diff --git a/build.gradle b/build.gradle index c4ffa7d..5a20915 100644 --- a/build.gradle +++ b/build.gradle @@ -35,6 +35,11 @@ dependencies { implementation libs.guava } + +tasks.named('test') { + useJUnitPlatform() +} + java { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 @@ -57,8 +62,4 @@ publishing { } } -jar.dependsOn sourcesJar - -tasks.named('test') { - useJUnitPlatform() -} +jar.dependsOn sourcesJar \ No newline at end of file