mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-05 12:58:02 +00:00
25 lines
440 B
Plaintext
25 lines
440 B
Plaintext
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":RedisBungee-API"))
|
|
implementation(libs.acf.core)
|
|
}
|
|
|
|
description = "RedisBungee common commands"
|
|
|
|
|
|
tasks {
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release.set(17)
|
|
}
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
}
|
|
}
|