feat: NickCore v1.0.0 - enterprise nickname plugin for Paper/Folia/Velocity

This commit is contained in:
2026-05-30 21:05:02 -05:00
parent 8a42740875
commit f0b35e89ac
54 changed files with 5393 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
plugins {
id("com.gradleup.shadow")
}
dependencies {
val velocityApiVersion: String by project
implementation(project(":nickcore-common"))
compileOnly("com.velocitypowered:velocity-api:$velocityApiVersion")
annotationProcessor("com.velocitypowered:velocity-api:$velocityApiVersion")
}
tasks.shadowJar {
archiveClassifier.set("")
archiveBaseName.set("NickCore-Velocity")
minimize()
}
tasks.build {
dependsOn(tasks.shadowJar)
}