plugins { id("java") } group = "com.alttd" version = System.getenv("BUILD_NUMBER") ?: "1.0.0-SNAPSHOT" description = "Altitude Quests plugin." apply() tasks { withType { options.encoding = Charsets.UTF_8.name() } withType { 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") }