Adapt all SSDG Gradle module build files to Gradle 7.3.

This commit is contained in:
John Blum
2021-11-16 20:47:47 -08:00
parent 11716691a2
commit 56134a0fe1
9 changed files with 102 additions and 88 deletions

View File

@@ -7,16 +7,16 @@ repositories {
dependencies {
testCompile project(':spring-session-data-geode')
testCompile "javax.servlet:javax.servlet-api"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile "org.springframework:spring-test"
testCompile "org.springframework.security:spring-security-core"
testCompile "org.springframework.security:spring-security-test"
testCompile "org.springframework.security:spring-security-web"
testImplementation project(':spring-session-data-geode')
testImplementation "javax.servlet:javax.servlet-api"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"
testImplementation "edu.umd.cs.mtc:multithreadedtc"
testImplementation "org.springframework:spring-test"
testImplementation "org.springframework.security:spring-security-core"
testImplementation "org.springframework.security:spring-security-test"
testImplementation "org.springframework.security:spring-security-web"
}