27 lines
561 B
Plaintext
27 lines
561 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "com.alttd"
|
|
version = System.getenv("BUILD_NUMBER") ?: "1.0.0-SNAPSHOT"
|
|
description = "Blacklist anyone with a specific permission from a world."
|
|
|
|
apply<JavaLibraryPlugin>()
|
|
|
|
tasks {
|
|
withType<JavaCompile> {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
withType<Javadoc> {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT") {
|
|
isChanging = true
|
|
}
|
|
compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT")
|
|
}
|