versioning scheme change
This commit is contained in:
parent
bb0af143fd
commit
440ab5ac9f
|
@ -5,7 +5,7 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
sh './gradlew :1.10.2:setupCiWorkspace'
|
sh './gradlew :1.10.2:setupCiWorkspace'
|
||||||
sh './gradlew :1.10.2:clean'
|
sh './gradlew :1.10.2:clean'
|
||||||
sh './gradlew :1.10.2:build'
|
sh './gradlew :1.10.2:build -Pbuild_number=${BUILD_NUMBER}'
|
||||||
archive '1.10.2/build/libs/*jar'
|
archive '1.10.2/build/libs/*jar'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
sh './gradlew :1.11.2:setupCiWorkspace'
|
sh './gradlew :1.11.2:setupCiWorkspace'
|
||||||
sh './gradlew :1.11.2:clean'
|
sh './gradlew :1.11.2:clean'
|
||||||
sh './gradlew :1.11.2:build'
|
sh './gradlew :1.11.2:build -Pbuild_number=${BUILD_NUMBER}'
|
||||||
archive '1.11.2/build/libs/*jar'
|
archive '1.11.2/build/libs/*jar'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
sh './gradlew :1.12.2:setupCiWorkspace'
|
sh './gradlew :1.12.2:setupCiWorkspace'
|
||||||
sh './gradlew :1.12.2:clean'
|
sh './gradlew :1.12.2:clean'
|
||||||
sh './gradlew :1.12.2:build'
|
sh './gradlew :1.12.2:build -Pbuild_number=${BUILD_NUMBER}'
|
||||||
archive '1.12.2/build/libs/*jar'
|
archive '1.12.2/build/libs/*jar'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,12 @@ subprojects {
|
||||||
apply plugin: "kotlin"
|
apply plugin: "kotlin"
|
||||||
apply plugin: "idea"
|
apply plugin: "idea"
|
||||||
|
|
||||||
|
if (project.hasProperty('build_number')) {
|
||||||
|
mod_version += "-build-$build_number"
|
||||||
|
} else if(!project.hasProperty('release')) {
|
||||||
|
mod_version += "-dev"
|
||||||
|
}
|
||||||
|
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
excludeDirs += [file("run")]
|
excludeDirs += [file("run")]
|
||||||
|
|
Loading…
Reference in New Issue