28 lines
546 B
Plaintext
28 lines
546 B
Plaintext
plugins {
|
|
java
|
|
}
|
|
|
|
group = "com.alttd.destro174.custommotd"
|
|
version = System.getenv("BUILD_NUMBER") ?: "DEV"
|
|
description = "Allows setting custom MOTD in-game."
|
|
|
|
dependencies {
|
|
compileOnly("com.alttd.cosmos:cosmos-api:26.2.build.17-stable")
|
|
compileOnly("me.clip:placeholderapi:2.12.3")
|
|
}
|
|
|
|
tasks {
|
|
withType<JavaCompile> {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
withType<Javadoc> {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
jar {
|
|
archiveFileName.set("${rootProject.name}.jar")
|
|
}
|
|
}
|
|
|