BlacklistFromWorld/build.gradle.kts

27 lines
561 B
Plaintext
Raw Normal View History

2022-09-29 22:30:09 +00:00
plugins {
id("java")
}
group = "com.alttd"
2026-08-01 07:54:14 +00:00
version = System.getenv("BUILD_NUMBER") ?: "1.0.0-SNAPSHOT"
2022-09-29 22:30:09 +00:00
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")
}