From 31b6d2e708a994b6ba943588ce214adc7cadc527 Mon Sep 17 00:00:00 2001 From: Francisco Solis Date: Wed, 15 Feb 2023 09:35:10 -0300 Subject: [PATCH] Update build.gradle.kts --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1a28ac2..65d7df1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file -> if(file.exists()) file.readLines().filter { it.isNotBlank() && !it.startsWith("#") && it.split("=").size == 2 }.associate { it.split("=")[0] to it.split("=")[1] } else emptyMap() }.toMutableMap().apply { putAll(System.getenv()) } -val projectVersion = env["VERSION"] ?: "0.3.0-SNAPSHOT" +val projectVersion = env["VERSION"] ?: "0.3.1-SNAPSHOT" group = "xyz.theprogramsrc" version = projectVersion