plugins { id 'java' } version = "0.0.1" repositories { mavenCentral() maven { url "https://repo.spongepowered.org/maven/" } maven { url "https://maven.fabricmc.net/" } } java { toolchain { languageVersion = JavaLanguageVersion.of(25) } } dependencies { implementation project(':app') } tasks.withType(JavaCompile).configureEach { it.options.encoding = "UTF-8" it.options.release = 25 }