We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b0914a commit a3874d8Copy full SHA for a3874d8
build.gradle
@@ -7,10 +7,9 @@ plugins {
7
// Change java compatibility level to 23
8
sourceCompatibility = targetCompatibility = 23
9
10
-def snapshot = project.release ? "" : "-SNAPSHOT"
+def snapshot = project.release=="true" ? "" : "-SNAPSHOT"
11
version = project.version+snapshot
12
// Name, version and group for the project
13
-version = "1.3"
14
group = "com.minecrafttas"
15
archivesBaseName = "discombobulator"
16
@@ -51,10 +50,6 @@ javadoc {
51
50
options.addBooleanOption('Xdoclint:none', true)
52
}
53
54
-publishToMavenLocal {
55
- version = version + "-SNAPSHOT"
56
-}
57
-
58
publishing {
59
repositories {
60
maven {
0 commit comments