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 72b0c07 commit 2a394e5Copy full SHA for 2a394e5
build.gradle.kts
@@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file ->
15
if(file.exists()) file.readLines().filter { it.isNotBlank() && !it.startsWith("#") && it.split("=").size == 2 }.associate { it.split("=")[0] to it.split("=")[1] } else emptyMap()
16
}.toMutableMap().apply { putAll(System.getenv()) }
17
18
-val projectVersion = env["VERSION"] ?: "0.3.0-SNAPSHOT"
+val projectVersion = env["VERSION"] ?: "0.3.1-SNAPSHOT"
19
20
group = "xyz.theprogramsrc"
21
version = projectVersion
0 commit comments