diff --git a/build.gradle.kts b/build.gradle.kts index e441c1336..563ca224e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,4 @@ import org.ajoberstar.grgit.Grgit -import org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL -import org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED import java.net.URI import java.time.format.DateTimeFormatter import xyz.jpenilla.runpaper.task.RunServer @@ -65,23 +63,6 @@ if (!project.hasProperty("gitCommitHash")) { } } -allprojects { - gradle.projectsEvaluated { - tasks.withType(JavaCompile::class) { - options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000")) - } - tasks.withType(Test::class) { - testLogging { - events(FAILED) - exceptionFormat = FULL - showExceptions = true - showCauses = true - showStackTraces = true - } - } - } -} - applyCommonConfiguration() val supportedVersions = listOf("1.17.1", "1.18.2", "1.19.4", "1.20", "1.20.1")