Adapt all SBDG module Gradle build files to Gradle 7.3.

This commit is contained in:
John Blum
2022-01-12 12:45:30 -08:00
parent a1d2c4b35e
commit 3640e1c2a8
24 changed files with 151 additions and 153 deletions

View File

@@ -15,18 +15,18 @@ repositories {
dependencies {
compile project(':spring-geode-starter')
implementation project(':spring-geode-starter')
optional project(":spring-geode-starter-logging")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
testCompile "junit:junit"
testCompile "org.mockito:mockito-core"
testCompile "edu.umd.cs.mtc:multithreadedtc"
testImplementation "junit:junit"
testImplementation "org.mockito:mockito-core"
testImplementation "edu.umd.cs.mtc:multithreadedtc"
testCompile project(":spring-geode-starter-test")
testImplementation project(":spring-geode-starter-test")
}