BlacklistFromWorld/build.gradle.kts
2026-08-01 02:55:59 -05:00

25 lines
527 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:26.2.build.17-stable")
compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT")
}