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,26 @@
plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
dependencies {
paperweight.paperDevBundle("1.21.5-no-moonrise-SNAPSHOT")
compileOnly(project(":plugins:fancynpcs:api"))
compileOnly("de.oliver:FancyLib:37")
compileOnly("org.lushplugins:ChatColorHandler:5.1.3")
}
tasks {
javadoc {
options.encoding = Charsets.UTF_8.name()
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release = 21
}
}