Use pipeline ID as the versions prerelease, not as the build number.

Should fix faulty version resolving causing issues in the future
This commit is contained in:
JFronny 2021-11-10 13:32:16 +01:00
parent 4512bab1a1
commit 393d7f1676
No known key found for this signature in database
GPG Key ID: BEC5ACBBD4EE17E5
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ allprojects {
}
group = "io.gitlab.jfronny.libjf"
version = "$project.mod_version" + (project.hasProperty('pipeline') ? "+" + project.getProperty('pipeline') : "")
version = "$project.mod_version" + (project.hasProperty('pipeline') ? "-" + project.getProperty('pipeline') : "")
sourceSets {
testmod {