mirror of
https://github.com/YouHaveTrouble/NotJustNameplates.git
synced 2026-05-12 06:26:58 +00:00
50 lines
1.4 KiB
Kotlin
50 lines
1.4 KiB
Kotlin
plugins {
|
|
`java-library`
|
|
id("io.papermc.paperweight.userdev") version "1.6.3"
|
|
id("xyz.jpenilla.run-paper") version "2.2.4" // Adds runServer and runMojangMappedServer tasks for testing
|
|
}
|
|
|
|
group = "me.youhavetrouble"
|
|
version = "1.7.0"
|
|
description = "Nameplates using display entities"
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
|
|
repositories {
|
|
maven("https://repo.purpurmc.org/snapshots/")
|
|
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
|
|
maven("https://jitpack.io")
|
|
}
|
|
|
|
dependencies {
|
|
paperweight.devBundle("org.purpurmc","1.20.6-R0.1-SNAPSHOT")
|
|
compileOnly("me.clip:placeholderapi:2.11.3")
|
|
compileOnly("com.github.LeonMangler:SuperVanish:6.2.17")
|
|
compileOnly("com.github.mbax:VanishNoPacket:3.22")
|
|
}
|
|
|
|
tasks {
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release.set(21)
|
|
}
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
val props = mapOf(
|
|
"name" to project.name,
|
|
"version" to project.version,
|
|
"description" to project.description,
|
|
"apiVersion" to "1.20"
|
|
)
|
|
inputs.properties(props)
|
|
filesMatching("paper-plugin.yml") {
|
|
expand(props)
|
|
}
|
|
}
|
|
} |