fancyholograms-v2: add deployment information

This commit is contained in:
Oliver
2025-03-29 22:39:18 +01:00
parent b30d28f885
commit 45e57488f7
20 changed files with 585 additions and 12 deletions

View File

@@ -48,7 +48,7 @@ tasks {
create<MavenPublication>("maven") {
groupId = "de.oliver"
artifactId = "FancyHolograms"
version = project.version.toString()
version = getFHVersion()
from(project.components["java"])
}
}
@@ -68,4 +68,8 @@ tasks {
options.release.set(17)
}
}
fun getFHVersion(): String {
return file("../VERSION").readText()
}