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

@@ -9,18 +9,18 @@ repositories {
dependencies {
compile project(":spring-geode-autoconfigure")
implementation project(":spring-geode-autoconfigure")
implementation "org.springframework.cloud:spring-cloud-bindings:${springCloudBindingsVersion}"
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "org.projectlombok:lombok"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "org.springframework.data:spring-data-geode-test"
testCompile "edu.umd.cs.mtc:multithreadedtc"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"
testImplementation "org.projectlombok:lombok"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.data:spring-data-geode-test"
testImplementation "edu.umd.cs.mtc:multithreadedtc"
}