BlacklistFromWorld/build.gradle.kts

25 lines
527 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 {
2026-08-01 07:55:59 +00:00
compileOnly("com.alttd.cosmos:cosmos-api:26.2.build.17-stable")
compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT")
}