Update lombok library

This commit is contained in:
Christoph Atteneder 2018-09-05 18:54:18 +02:00
parent 47251914ca
commit 73e4ee5f47
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B
4 changed files with 14 additions and 14 deletions

View File

@ -56,7 +56,7 @@ dependencies {
compile 'org.bouncycastle:bcpg-jdk15on:1.56' compile 'org.bouncycastle:bcpg-jdk15on:1.56'
compile 'commons-io:commons-io:2.4' compile 'commons-io:commons-io:2.4'
compile 'org.apache.commons:commons-lang3:3.4' compile 'org.apache.commons:commons-lang3:3.4'
compileOnly 'org.projectlombok:lombok:1.16.16' compileOnly 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.16.16' annotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
} }

View File

@ -43,8 +43,8 @@ dependencies {
compile('com.fasterxml.jackson.core:jackson-databind:2.8.10') { compile('com.fasterxml.jackson.core:jackson-databind:2.8.10') {
exclude(module: 'jackson-annotations') exclude(module: 'jackson-annotations')
} }
compileOnly 'org.projectlombok:lombok:1.16.16' compileOnly 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.16.16' annotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
testCompile('org.mockito:mockito-core:2.8.9') { testCompile('org.mockito:mockito-core:2.8.9') {
exclude(module: 'objenesis') exclude(module: 'objenesis')
@ -55,6 +55,6 @@ dependencies {
testCompile 'org.springframework:spring-test:4.3.6.RELEASE' testCompile 'org.springframework:spring-test:4.3.6.RELEASE'
testCompile 'com.natpryce:make-it-easy:4.0.1' testCompile 'com.natpryce:make-it-easy:4.0.1'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3' testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompileOnly 'org.projectlombok:lombok:1.16.16' testCompileOnly 'org.projectlombok:lombok:1.18.2'
testAnnotationProcessor 'org.projectlombok:lombok:1.16.16' testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
} }

View File

@ -55,8 +55,8 @@ dependencies {
compile 'com.github.sarxos:webcam-capture:0.3.12' compile 'com.github.sarxos:webcam-capture:0.3.12'
compileOnly 'org.projectlombok:lombok:1.16.16' compileOnly 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.16.16' annotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompile('org.mockito:mockito-core:2.8.9') { testCompile('org.mockito:mockito-core:2.8.9') {
exclude(module: 'objenesis') exclude(module: 'objenesis')
} }
@ -65,8 +65,8 @@ dependencies {
testCompile 'org.powermock:powermock-api-mockito2:1.7.1' testCompile 'org.powermock:powermock-api-mockito2:1.7.1'
testCompile 'org.springframework:spring-test:4.3.6.RELEASE' testCompile 'org.springframework:spring-test:4.3.6.RELEASE'
testCompile 'com.natpryce:make-it-easy:4.0.1' testCompile 'com.natpryce:make-it-easy:4.0.1'
testCompileOnly 'org.projectlombok:lombok:1.16.16' testCompileOnly 'org.projectlombok:lombok:1.18.2'
testAnnotationProcessor 'org.projectlombok:lombok:1.16.16' testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
} }
build.dependsOn installDist build.dependsOn installDist

View File

@ -24,10 +24,10 @@ dependencies {
} }
compile 'net.sf.jopt-simple:jopt-simple:5.0.3' compile 'net.sf.jopt-simple:jopt-simple:5.0.3'
compile 'org.fxmisc.easybind:easybind:1.0.3' compile 'org.fxmisc.easybind:easybind:1.0.3'
compileOnly 'org.projectlombok:lombok:1.16.16' compileOnly 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.16.16' annotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
testCompile 'org.jmockit:jmockit:1.30' testCompile 'org.jmockit:jmockit:1.30'
testCompileOnly 'org.projectlombok:lombok:1.16.16' testCompileOnly 'org.projectlombok:lombok:1.18.2'
testAnnotationProcessor 'org.projectlombok:lombok:1.16.16' testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
} }