From 9aae9cd77ba3c1b8a454a3ac78ec0edeeedfd3a0 Mon Sep 17 00:00:00 2001 From: tueem Date: Sat, 8 Feb 2025 16:51:21 +0100 Subject: [PATCH] add Project settings and artifact naming --- build.gradle.kts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 build.gradle.kts diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..2bee132 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,16 @@ +import java.io.ByteArrayOutputStream + +allprojects { + group = "net.tomatentum.tomatenmusic3" + version = "1.0.0-RC1" + (if (!project.hasProperty("release")) ("-" + getGitHash()) else "") + description = "A simple Discord Music Bot written in Java with Javacord" +} + +fun getGitHash(): String { + val output = ByteArrayOutputStream() + project.exec { + commandLine("git", "rev-parse", "--short", "HEAD") + standardOutput = output + } + return output.toString().trim() +} \ No newline at end of file