fix: using lombok gradle plugin

This commit is contained in:
Laureηt 2022-05-28 15:58:03 +02:00
parent 21568c4d0f
commit 328329f64b
No known key found for this signature in database
GPG key ID: D88C6B294FD40994

View file

@ -1,6 +1,7 @@
plugins {
id 'java'
id 'war'
id 'io.freefair.lombok' version '6.4.3'
}
repositories {
@ -27,12 +28,6 @@ dependencies {
// Pour les tests
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
// pour des getters/setters auto
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
}
test {