2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-09-19 23:28:00 +00:00
RedisBungee/plugin-message-api/protocol/build.gradle.kts

31 lines
493 B
Plaintext
Raw Normal View History

2024-05-15 22:50:50 +00:00
plugins {
`java-library`
`maven-publish`
}
dependencies {
compileOnly(libs.guava)
}
tasks {
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
2024-05-15 22:50:50 +00:00
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}