-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
37 lines (31 loc) · 950 Bytes
/
build.gradle.kts
File metadata and controls
37 lines (31 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
plugins {
kotlin("jvm") version "1.7.20"
id("java-gradle-plugin")
id("com.gradle.plugin-publish") version "1.0.0"
}
repositories {
mavenCentral()
}
group = "com.corneliudascalu"
version = "0.5"
gradlePlugin {
plugins {
create("autoversion") {
id = "com.corneliudascalu.autoversion"
displayName = "AutoVersion"
description = "Auto versioning based on the most recent git tag"
implementationClass = "com.corneliudascalu.AutoVersionPlugin"
}
}
}
pluginBundle {
website = "https://github.com/corneliudascalu/autoversion"
vcsUrl = "https://github.com/corneliudascalu/autoversion"
tags = listOf("versioning", "git", "tag")
}
dependencies {
implementation(kotlin("stdlib", "1.5.31"))
testImplementation("com.lordcodes.turtle:turtle:0.6.0")
testImplementation("junit:junit:4.13")
testImplementation("org.assertj:assertj-core:3.11.1")
}