diff --git a/build.gradle b/build.gradle index 6f19d6dc8..0e939cfbb 100644 --- a/build.gradle +++ b/build.gradle @@ -165,6 +165,9 @@ subprojects { compileOnly group: 'junit', name: 'junit', version: "${junitVersion}" testImplementation group: 'org.mockito', name: 'mockito-all', version: "${mockitoallVersion}" testImplementation group: 'xmlunit', name: 'xmlunit', version: "${xmlunitVersion}" + // https://projectlombok.org + compileOnly 'org.projectlombok:lombok:1.18.4' + annotationProcessor 'org.projectlombok:lombok:1.18.4' //apache implementation group: 'commons-beanutils', name: 'commons-beanutils', version: "${commonsbeanutilsVersion}" diff --git a/config/build_docker.gradle b/config/build_docker.gradle index 3e91b56af..eeeef4d25 100644 --- a/config/build_docker.gradle +++ b/config/build_docker.gradle @@ -127,7 +127,10 @@ subprojects { compileOnly group: 'junit', name: 'junit', version: "${junitVersion}" testImplementation group: 'org.mockito', name: 'mockito-all', version: "${mockitoallVersion}" testImplementation group: 'xmlunit', name: 'xmlunit', version: "${xmlunitVersion}" - + // https://projectlombok.org + compileOnly 'org.projectlombok:lombok:1.18.4' + annotationProcessor 'org.projectlombok:lombok:1.18.4' + //apache implementation group: 'commons-beanutils', name: 'commons-beanutils', version: "${commonsbeanutilsVersion}" implementation group: 'commons-codec', name: 'commons-codec', version: "${commonscodecVersion}" diff --git a/config/build_jar.gradle b/config/build_jar.gradle index 1eb3cab11..e53806825 100644 --- a/config/build_jar.gradle +++ b/config/build_jar.gradle @@ -126,7 +126,10 @@ subprojects { compileOnly group: 'junit', name: 'junit', version: "${junitVersion}" testImplementation group: 'org.mockito', name: 'mockito-all', version: "${mockitoallVersion}" testImplementation group: 'xmlunit', name: 'xmlunit', version: "${xmlunitVersion}" - + // https://projectlombok.org + compileOnly 'org.projectlombok:lombok:1.18.4' + annotationProcessor 'org.projectlombok:lombok:1.18.4' + //apache implementation group: 'commons-beanutils', name: 'commons-beanutils', version: "${commonsbeanutilsVersion}" implementation group: 'commons-codec', name: 'commons-codec', version: "${commonscodecVersion}" diff --git a/config/build_standard.gradle b/config/build_standard.gradle index 12a0e839c..e7d18305c 100644 --- a/config/build_standard.gradle +++ b/config/build_standard.gradle @@ -164,7 +164,10 @@ subprojects { compileOnly group: 'junit', name: 'junit', version: "${junitVersion}" testImplementation group: 'org.mockito', name: 'mockito-all', version: "${mockitoallVersion}" testImplementation group: 'xmlunit', name: 'xmlunit', version: "${xmlunitVersion}" - + // https://projectlombok.org + compileOnly 'org.projectlombok:lombok:1.18.4' + annotationProcessor 'org.projectlombok:lombok:1.18.4' + //apache implementation group: 'commons-beanutils', name: 'commons-beanutils', version: "${commonsbeanutilsVersion}" implementation group: 'commons-codec', name: 'commons-codec', version: "${commonscodecVersion}" diff --git a/maxkey-core/build.gradle b/maxkey-core/build.gradle index b59e1085d..7b892b29a 100644 --- a/maxkey-core/build.gradle +++ b/maxkey-core/build.gradle @@ -3,10 +3,6 @@ description = "maxkey-core" dependencies { implementation project(":maxkey-common") - // https://projectlombok.org - compileOnly 'org.projectlombok:lombok:1.18.4' - annotationProcessor 'org.projectlombok:lombok:1.18.4' - //local jars implementation fileTree(dir: '../maxkey-lib/', include: '*/*.jar')