mirror of
https://github.com/Xiao-MoMi/Custom-Nameplates.git
synced 2025-12-19 15:09:23 +00:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
plugins {
|
|
id("java")
|
|
id("com.gradleup.shadow") version "9.2.2"
|
|
}
|
|
|
|
val git : String = versionBanner()
|
|
val builder : String = builder()
|
|
ext["git_version"] = git
|
|
ext["builder"] = builder
|
|
|
|
subprojects {
|
|
apply(plugin = "java")
|
|
apply(plugin = "com.gradleup.shadow")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
tasks.processResources {
|
|
filteringCharset = "UTF-8"
|
|
|
|
filesMatching(arrayListOf("custom-nameplates.properties")) {
|
|
expand(rootProject.properties)
|
|
}
|
|
|
|
filesMatching(arrayListOf("*.yml", "*/*.yml", "META-INF/sponge_plugins.json")) {
|
|
expand(
|
|
Pair("project_version", rootProject.properties["project_version"]!!),
|
|
Pair("config_version", rootProject.properties["config_version"]!!)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
fun versionBanner() = project.providers.exec {
|
|
commandLine("git", "rev-parse", "--short=8", "HEAD")
|
|
}.standardOutput.asText.map { it.trim() }.getOrElse("Unknown")
|
|
|
|
fun builder() = project.providers.exec {
|
|
commandLine("git", "config", "user.name")
|
|
}.standardOutput.asText.map { it.trim() }.getOrElse("Unknown") |