feat(build): add prefix to archive jar
All checks were successful
github-mirror / push-github (push) Successful in 1m37s
Build / Gradle-Build (push) Successful in 35s
Test / Gradle-Test (push) Successful in 46s

This commit is contained in:
tueem 2025-04-01 10:18:37 +02:00
parent 0114cffcbd
commit ec17952375
Signed by: tueem
GPG Key ID: 65C8667EC17A88FB

View File

@ -8,7 +8,11 @@ allprojects {
group = "net.tomatentum.Marinara"
version = "1.0.0-RC1" + (if (!project.hasProperty("release")) ("-" + getGitHash()) else "")
description = "A simple but powerful, library-agnostic Discord Interaction Wrapper."
plugins.withType<JavaPlugin> {
tasks.withType<Jar>().configureEach {
archiveBaseName.set("marinara-" + archiveBaseName.get())
}
}
}
subprojects {