Skip to content

Commit 15dd301

Browse files
committed
feat: test without version
1 parent 521202a commit 15dd301

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

build.gradle.kts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "fr.traqueur"
10-
version = property("version")!!
10+
version = property("version") as String
1111

1212
extra.set("targetFolder", file("target/"))
1313
extra.set("classifier", System.getProperty("archive.classifier"))
@@ -66,8 +66,7 @@ tasks.build {
6666
}
6767

6868
tasks.shadowJar {
69-
archiveBaseName.set(project.name)
70-
archiveVersion.set(project.version.toString())
69+
archiveVersion.set("")
7170
rootProject.extra.properties["sha"]?.let { sha ->
7271
archiveClassifier.set("${rootProject.extra.properties["classifier"]}-${sha}")
7372
} ?: run {
@@ -85,7 +84,3 @@ java {
8584
withJavadocJar()
8685
}
8786

88-
publishConfig {
89-
githubOwner = "Traqueur-dev"
90-
useRootProjectName = true
91-
}

0 commit comments

Comments
 (0)