EntityLib/platforms/velocity/build.gradle.kts
Bram 0a1e95a17d
Added: entitylib.shadow-conventions.gradle.kts
Renamed: entitylib.java-conventions.gradle.kts -> entitylib.library-conventions.gradle.kts
Switched: johnrengelman's shadow to googler's shadow fork
2024-07-07 19:08:21 +02:00

22 lines
446 B
Text

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