EntityLib/platforms/velocity/build.gradle.kts
2024-07-07 14:16:19 +02:00

22 lines
431 B
Text

plugins {
entitylib.`java-conventions`
id("java-library")
}
repositories {
maven("https://repo.papermc.io/repository/maven-public/")
}
dependencies {
api(project(":common"))
compileOnly(libs.velocity)
compileOnly(libs.packetevents.velocity)
annotationProcessor(libs.velocity)
}
tasks {
withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
options.release = 17
}
}