We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8880ca2 commit 5d3207bCopy full SHA for 5d3207b
build.gradle.kts
@@ -46,12 +46,8 @@ allprojects {
46
if (System.getenv("VERSION")==null) {
47
version = (File(project.rootDir, "config/version.txt").readText().trim() + "-SNAPSHOT")
48
}
49
- else if (System.getenv("VERSION").contains("-")) {
50
- // Either SNAPSHOT or a version qualifier included in $VERSION for ad-hoc releases
51
- version = System.getenv("VERSION")
52
- }
53
else {
54
- version = System.getenv("VERSION") + "-" + File(project.rootDir, "config/version-qualifier.txt").readText().trim()
+ version = System.getenv("VERSION")
55
56
57
repositories {
0 commit comments