plugins { java id("com.diffplug.spotless") version "7.0.4" id("com.gradleup.shadow") version "9.0.0-rc2" } repositories { mavenCentral() } dependencies { implementation("org.ow2.asm:asm:9.8") implementation("org.ow2.asm:asm-tree:9.8") testImplementation(libs.junit.jupiter) testRuntimeOnly("org.junit.platform:junit-platform-launcher") } java { toolchain { languageVersion = JavaLanguageVersion.of(11) } } tasks.withType().configureEach { options.release = 8 options.compilerArgs.addAll(listOf("-Xlint:all", "-Werror")) } spotless { java { palantirJavaFormat() removeUnusedImports() } } tasks.jar { enabled = false } tasks.shadowJar { archiveFileName = "theseus.jar" manifest { attributes["Premain-Class"] = "com.modrinth.theseus.agent.TheseusAgent" } enableRelocation = true relocationPrefix = "com.modrinth.theseus.shadow" } tasks.named("test") { useJUnitPlatform() } tasks.withType().configureEach { isPreserveFileTimestamps = false isReproducibleFileOrder = true }