mirror of
https://github.com/PaulReichmuth/timekeep-backend.git
synced 2025-12-22 22:41:59 +00:00
switch build system to gradle
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
id("java-library")
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id("io.freefair.lombok") version "9.0.0"
|
id("io.freefair.lombok") version "9.0.0"
|
||||||
}
|
}
|
||||||
@@ -43,3 +43,12 @@ tasks.withType<JavaCompile>() {
|
|||||||
tasks.withType<Javadoc>() {
|
tasks.withType<Javadoc>() {
|
||||||
options.encoding = "UTF-8"
|
options.encoding = "UTF-8"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.test {
|
||||||
|
failOnNoDiscoveredTests = false
|
||||||
|
failFast = true
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.build {
|
||||||
|
|
||||||
|
}
|
||||||
@@ -2,4 +2,6 @@
|
|||||||
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
|
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
|
||||||
|
|
||||||
org.gradle.configuration-cache=true
|
org.gradle.configuration-cache=true
|
||||||
|
org.gradle.caching=true
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user