Add FancyNpcs source

This commit is contained in:
Oliver
2025-03-29 16:39:52 +01:00
parent 0b0641098e
commit e32f4ee52a
461 changed files with 29868 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
val minecraftVersion = "1.19.4"
dependencies {
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
compileOnly(project(":plugins:fancynpcs:api"))
compileOnly("de.oliver:FancyLib:37")
compileOnly("org.lushplugins:ChatColorHandler:5.1.3")
}
tasks {
named("assemble") {
dependsOn(named("reobfJar"))
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release = 17
}
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}