mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2026-04-02 21:20:47 +00:00
still same 0.13.0 core nothing changed yet but with formatting appiled
30 lines
620 B
Plaintext
30 lines
620 B
Plaintext
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
version = property("redisbungee-version").toString()
|
|
group = property("redisbungee-group").toString()
|
|
|
|
dependencies {
|
|
compileOnly(project(":RedisBungee-API"))
|
|
implementation(libs.acf.core)
|
|
compileOnly(libs.adventure.api)
|
|
compileOnly(libs.adventure.miniMessage)
|
|
}
|
|
|
|
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()
|
|
}
|
|
}
|