Enable the Gradle Lombok Plugin.

Switch 'org.assertj:assertj-core' and 'org.projectlombok:lombok' from 'testCompile' dependencies to 'compile'.
This commit is contained in:
John Blum
2020-06-04 02:06:39 -07:00
parent 4bb5d84ea4
commit df69b414cc
2 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
# This file is generated by the 'io.freefair.lombok' Gradle plugin
config.stopBubbling = true

View File

@@ -1,3 +1,7 @@
plugins {
id "io.freefair.lombok" version "5.0.0-rc2"
}
import org.apache.tools.ant.filters.ReplaceTokens
apply plugin: 'io.spring.convention.docs'
@@ -11,10 +15,11 @@ dependencies {
optional project(":spring-geode-starter-logging")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "org.projectlombok:lombok"
testCompile "org.springframework:spring-test"
testCompile "edu.umd.cs.mtc:multithreadedtc"