plugins { java } group = "com.alttd.destro174.custommotd" version = System.getenv("BUILD_NUMBER") ?: "DEV" description = "Allows setting custom MOTD in-game." dependencies { compileOnly("com.alttd.cosmos:cosmos-api:26.2.build.17-stable") compileOnly("me.clip:placeholderapi:2.12.3") } tasks { withType { options.encoding = Charsets.UTF_8.name() } withType { options.encoding = Charsets.UTF_8.name() } jar { archiveFileName.set("${rootProject.name}.jar") } }