File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ buildscript {
27
27
}
28
28
29
29
plugins {
30
- id ' io.franzbecker.gradle-lombok' version ' 3.2.0' apply false
31
30
id " biz.aQute.bnd.builder" version " 5.1.2" apply false
32
31
id " org.sonarqube" version " 3.0"
33
32
id " jacoco"
@@ -49,7 +48,6 @@ subprojects {
49
48
apply plugin : ' java'
50
49
apply plugin : ' maven-publish'
51
50
apply plugin : ' signing'
52
- apply plugin : ' io.franzbecker.gradle-lombok'
53
51
54
52
repositories {
55
53
mavenLocal()
@@ -58,6 +56,14 @@ subprojects {
58
56
maven { url " https://repo.spring.io/libs-milestone" }
59
57
}
60
58
59
+ dependencies {
60
+ compileOnly " org.projectlombok:lombok:$LIB_LOMBOK_VER "
61
+ annotationProcessor " org.projectlombok:lombok:$LIB_LOMBOK_VER "
62
+
63
+ testCompileOnly " org.projectlombok:lombok:$LIB_LOMBOK_VER "
64
+ testAnnotationProcessor " org.projectlombok:lombok:$LIB_LOMBOK_VER "
65
+ }
66
+
61
67
idea {
62
68
module {
63
69
downloadJavadoc = true
@@ -72,11 +78,6 @@ subprojects {
72
78
73
79
compileJava. dependsOn(processResources)
74
80
75
- lombok {
76
- version = " 1.18.16"
77
- sha256 = " "
78
- }
79
-
80
81
jacocoTestReport {
81
82
reports {
82
83
xml. enabled = true
@@ -86,7 +87,6 @@ subprojects {
86
87
}
87
88
88
89
if (! it. name. startsWith(' example' )) {
89
-
90
90
jar {
91
91
from " LICENSE.md"
92
92
}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ PROJECT_DEV_NAME=Andrew Potter
10
10
LIB_GRAPHQL_JAVA_VER =16.1
11
11
LIB_JACKSON_VER =2.12.0
12
12
LIB_SLF4J_VER =1.7.30
13
+ LIB_LOMBOK_VER =1.18.20
13
14
SOURCE_COMPATIBILITY =1.8
14
15
TARGET_COMPATIBILITY =1.8
15
16
GRADLE_WRAPPER_VER =7.0
You can’t perform that action at this time.
0 commit comments