2022-01-06 18:05:33 +00:00
|
|
|
plugins {
|
|
|
|
|
id("java")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group = "com.alttd"
|
|
|
|
|
version = "1.0.0-SNAPSHOT"
|
|
|
|
|
description = "Altitude Quests plugin."
|
|
|
|
|
|
|
|
|
|
apply<JavaLibraryPlugin>()
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
2025-06-28 01:33:39 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
2022-01-06 18:05:33 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
|
withType<JavaCompile> {
|
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
withType<Javadoc> {
|
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-11-17 23:19:41 +00:00
|
|
|
compileOnly("com.alttd.cosmos:cosmos-api:1.21.8-R0.1-SNAPSHOT") {
|
2025-06-28 01:33:39 +00:00
|
|
|
isChanging = true
|
|
|
|
|
}
|
2022-12-05 20:35:39 +00:00
|
|
|
compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT")
|
2025-06-28 01:33:39 +00:00
|
|
|
}
|