From 650a4e8919168fc46f2d188037bdb6377408dc42 Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Mon, 7 Apr 2025 16:36:37 +0200 Subject: [PATCH] move version from build.gradle.kts to gradle.properties --- build.gradle.kts | 1 - gradle.properties | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 gradle.properties diff --git a/build.gradle.kts b/build.gradle.kts index 2dad15d..08fcab6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,6 @@ plugins { } group = "ltd.hlaeja" -version = "0.0.1-SNAPSHOT" java { toolchain { diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..6604987 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +kotlin.code.style=official +version=0.1.0-SNAPSHOT