mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-03 13:31:32 +00:00
Try a build version-based version scheme.
This commit is contained in:
@ -29,8 +29,16 @@ subprojects {
|
|||||||
plugins.apply("org.jetbrains.kotlin.plugin.serialization")
|
plugins.apply("org.jetbrains.kotlin.plugin.serialization")
|
||||||
plugins.apply("com.github.johnrengelman.shadow")
|
plugins.apply("com.github.johnrengelman.shadow")
|
||||||
|
|
||||||
|
version = "0.1"
|
||||||
group = "io.gorence"
|
group = "io.gorence"
|
||||||
version = "1.0-SNAPSHOT"
|
|
||||||
|
// Add build number if running under CI.
|
||||||
|
val versionWithBuild = if (System.getenv("CI_PIPELINE_IID") != null) {
|
||||||
|
version as String + ".${System.getenv("CI_PIPELINE_IID")}"
|
||||||
|
} else {
|
||||||
|
"DEV"
|
||||||
|
}
|
||||||
|
version = versionWithBuild
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Kotlin dependencies
|
// Kotlin dependencies
|
||||||
|
Reference in New Issue
Block a user