EntityLib/platforms/velocity/build.gradle.kts
Bram 38a87a6694
Added: ELVersion and ElVersionTask
Updated: GithubUpdater to make use of the new ELVersion class
2024-07-07 15:27:45 +02:00

22 lines
427 B
Text

plugins {
entitylib.`java-conventions`
`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
}
}