32 lines
530 B
Plaintext
32 lines
530 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "com.alttd"
|
|
version = "1.1.0-SNAPSHOT"
|
|
description = "Altitude player flag plugin."
|
|
|
|
apply<JavaLibraryPlugin>()
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|