mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
Add FancyNpcs source
This commit is contained in:
31
plugins/fancynpcs/implementation_1_20_1/build.gradle.kts
Normal file
31
plugins/fancynpcs/implementation_1_20_1/build.gradle.kts
Normal file
@@ -0,0 +1,31 @@
|
||||
plugins {
|
||||
id("java-library")
|
||||
id("io.papermc.paperweight.userdev")
|
||||
}
|
||||
|
||||
val minecraftVersion = "1.20.1"
|
||||
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user