add Project settings and artifact naming
All checks were successful
github-mirror / push-github (push) Successful in 4s
Build / Gradle-Build (push) Successful in 23s
Test / Gradle-Test (push) Successful in 13s

This commit is contained in:
tueem 2025-02-08 16:51:21 +01:00
parent ca52d8f04c
commit 9aae9cd77b
Signed by: tueem
GPG Key ID: 65C8667EC17A88FB

16
build.gradle.kts Normal file
View File

@ -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()
}