switch build system to gradle

This commit is contained in:
2025-10-08 15:23:05 +02:00
parent f4ddae7a69
commit b2c1b0375e
2 changed files with 12 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
*/
plugins {
`java-library`
id("java-library")
`maven-publish`
id("io.freefair.lombok") version "9.0.0"
}
@@ -43,3 +43,12 @@ tasks.withType<JavaCompile>() {
tasks.withType<Javadoc>() {
options.encoding = "UTF-8"
}
tasks.test {
failOnNoDiscoveredTests = false
failFast = true
}
tasks.build {
}

View File

@@ -2,4 +2,6 @@
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
org.gradle.configuration-cache=true
org.gradle.caching=true