We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 521202a commit 15dd301Copy full SHA for 15dd301
build.gradle.kts
@@ -7,7 +7,7 @@ plugins {
7
}
8
9
group = "fr.traqueur"
10
-version = property("version")!!
+version = property("version") as String
11
12
extra.set("targetFolder", file("target/"))
13
extra.set("classifier", System.getProperty("archive.classifier"))
@@ -66,8 +66,7 @@ tasks.build {
66
67
68
tasks.shadowJar {
69
- archiveBaseName.set(project.name)
70
- archiveVersion.set(project.version.toString())
+ archiveVersion.set("")
71
rootProject.extra.properties["sha"]?.let { sha ->
72
archiveClassifier.set("${rootProject.extra.properties["classifier"]}-${sha}")
73
} ?: run {
@@ -85,7 +84,3 @@ java {
85
84
withJavadocJar()
86
87
88
-publishConfig {
89
- githubOwner = "Traqueur-dev"
90
- useRootProjectName = true
91
-}
0 commit comments