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

@@ -4,20 +4,20 @@ description = "Apache Geode Extensions"
dependencies {
compile "org.apache.geode:geode-core:$apacheGeodeVersion"
compile "org.apache.geode:geode-cq:$apacheGeodeVersion"
compile "org.apache.geode:geode-lucene:$apacheGeodeVersion"
compile "org.apache.geode:geode-wan:$apacheGeodeVersion"
implementation "org.apache.geode:geode-core:$apacheGeodeVersion"
implementation "org.apache.geode:geode-cq:$apacheGeodeVersion"
implementation "org.apache.geode:geode-lucene:$apacheGeodeVersion"
implementation "org.apache.geode:geode-wan:$apacheGeodeVersion"
compile "com.fasterxml.jackson.core:jackson-databind"
implementation "com.fasterxml.jackson.core:jackson-databind"
testCompile "org.apache.geode:geode-membership:$apacheGeodeVersion"
testCompile "org.apache.geode:geode-serialization:$apacheGeodeVersion"
testImplementation "org.apache.geode:geode-membership:$apacheGeodeVersion"
testImplementation "org.apache.geode:geode-serialization:$apacheGeodeVersion"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "org.projectlombok:lombok"
testCompile "edu.umd.cs.mtc:multithreadedtc"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"
testImplementation "org.projectlombok:lombok"
testImplementation "edu.umd.cs.mtc:multithreadedtc"
}