Adapt all SBDG module Gradle build files to Gradle 7.3.
This commit is contained in:
@@ -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"
|
||||
|
||||
}
|
||||
|
||||
@@ -5,17 +5,17 @@ description = "Spring Boot Actuator Auto-Configuration for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-actuator")
|
||||
compile project(":spring-geode-autoconfigure")
|
||||
implementation project(":spring-geode-actuator")
|
||||
implementation project(":spring-geode-autoconfigure")
|
||||
|
||||
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"
|
||||
|
||||
}
|
||||
|
||||
@@ -5,19 +5,19 @@ description = "Spring Boot Actuator for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode")
|
||||
implementation project(":spring-geode")
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter-actuator"
|
||||
implementation "org.springframework.boot:spring-boot-starter-actuator"
|
||||
|
||||
provided "org.apache.geode:geode-logging:$apacheGeodeVersion"
|
||||
provided "org.apache.geode:geode-serialization:$apacheGeodeVersion"
|
||||
|
||||
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"
|
||||
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ description = "Spring Boot Auto-Configuration for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode")
|
||||
implementation project(":spring-geode")
|
||||
|
||||
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
|
||||
|
||||
@@ -19,15 +19,15 @@ dependencies {
|
||||
optional "org.springframework.boot:spring-boot-configuration-processor"
|
||||
optional "org.springframework.session:spring-session-data-geode"
|
||||
|
||||
testCompile "jakarta.servlet:jakarta.servlet-api"
|
||||
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.boot:spring-boot-starter-web"
|
||||
testCompile "org.springframework.data:spring-data-geode-test"
|
||||
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
||||
testImplementation "jakarta.servlet:jakarta.servlet-api"
|
||||
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.boot:spring-boot-starter-web"
|
||||
testImplementation "org.springframework.data:spring-data-geode-test"
|
||||
testImplementation "edu.umd.cs.mtc:multithreadedtc"
|
||||
|
||||
testCompileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
}
|
||||
|
||||
@@ -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")
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,10 +8,10 @@ description = "Spring Geode Sample demonstrating the use of Spring Boot Actuator
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter-actuator")
|
||||
compile project(":spring-geode-starter-test")
|
||||
implementation project(":spring-geode-starter-actuator")
|
||||
implementation project(":spring-geode-starter-test")
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -10,16 +10,16 @@ description = "Spring Geode Sample demonstrating the use of Spring Boot Auto-Con
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
compile project(":spring-geode-starter-test")
|
||||
implementation project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter-test")
|
||||
|
||||
compile "org.assertj:assertj-core"
|
||||
compile "org.projectlombok:lombok"
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
|
||||
testCompileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
|
||||
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
||||
@@ -8,13 +8,13 @@ description = "Spring Geode Sample demonstrating Apache Geode security configure
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
compile project(":spring-geode-starter-test")
|
||||
implementation project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter-test")
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
compile "org.assertj:assertj-core"
|
||||
compile "org.projectlombok:lombok"
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
}
|
||||
|
||||
bootJar {
|
||||
|
||||
@@ -4,18 +4,16 @@ description = "Spring Geode Sample demonstrating Spring Session with Apache Geod
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
// runtime project(":spring-geode-starter-session")
|
||||
runtimeOnly "org.springframework.boot:spring-boot-starter-thymeleaf"
|
||||
|
||||
runtime "org.springframework.boot:spring-boot-starter-thymeleaf"
|
||||
testImplementation project(":spring-geode-starter-session")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile project(":spring-geode-starter-session")
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,20 +8,20 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
|
||||
|
||||
compile "org.projectlombok:lombok"
|
||||
compile "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.projectlombok:lombok"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
runtime "org.hsqldb:hsqldb"
|
||||
runtimeOnly "org.hsqldb:hsqldb"
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.awaitility:awaitility:$awaitilityVersion"
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,17 +8,17 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.projectlombok:lombok"
|
||||
compile "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.projectlombok:lombok"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
runtime "org.hsqldb:hsqldb"
|
||||
runtimeOnly "org.hsqldb:hsqldb"
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -4,13 +4,13 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,15 +8,15 @@ description = "Spring Geode Sample for Multi-Site Caching."
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.assertj:assertj-core"
|
||||
compile "org.projectlombok:lombok"
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,18 +8,18 @@ description = "Spring Geode Sample demonstrating Spring's Cache Abstraction usin
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":apache-geode-extensions")
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":apache-geode-extensions")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.assertj:assertj-core"
|
||||
compile "org.projectlombok:lombok"
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
runtime "org.springframework.boot:spring-boot-starter-jetty"
|
||||
runtimeOnly "org.springframework.boot:spring-boot-starter-jetty"
|
||||
|
||||
testCompile project (":spring-geode-starter-test")
|
||||
testImplementation project (":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -10,15 +10,15 @@ description = "Spring Geode Sample for Getting Started with Spring Boot for Apac
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.assertj:assertj-core"
|
||||
compile "org.projectlombok:lombok"
|
||||
compile "org.springframework.boot:spring-boot-starter-web"
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
implementation "org.springframework.boot:spring-boot-starter-web"
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,15 +8,15 @@ description = "Quick Start for Spring Boot for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-starter")
|
||||
|
||||
compile "org.assertj:assertj-core"
|
||||
compile "org.projectlombok:lombok"
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
|
||||
//runtime project(":spring-geode-starter-logging")
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ description = "Spring Boot Actuator Starter for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":spring-geode-starter")
|
||||
compile project(":spring-geode-actuator-autoconfigure")
|
||||
implementation project(":spring-geode-starter")
|
||||
implementation project(":spring-geode-actuator-autoconfigure")
|
||||
|
||||
}
|
||||
|
||||
@@ -5,10 +5,10 @@ description = "Spring Boot Logging Starter for Apache Geode with Logback as the
|
||||
|
||||
dependencies {
|
||||
|
||||
compile "ch.qos.logback:logback-classic"
|
||||
compile "org.apache.logging.log4j:log4j-to-slf4j"
|
||||
compile "org.springframework.boot:spring-boot-starter-logging"
|
||||
implementation "ch.qos.logback:logback-classic"
|
||||
implementation "org.apache.logging.log4j:log4j-to-slf4j"
|
||||
implementation "org.springframework.boot:spring-boot-starter-logging"
|
||||
|
||||
testCompile project(":spring-geode-starter-test")
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
}
|
||||
|
||||
@@ -5,8 +5,8 @@ description = "Spring Boot Starter for Spring Session using Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-geode-starter')
|
||||
implementation project(':spring-geode-starter')
|
||||
|
||||
compile 'org.springframework.session:spring-session-data-geode'
|
||||
implementation 'org.springframework.session:spring-session-data-geode'
|
||||
|
||||
}
|
||||
|
||||
@@ -5,9 +5,9 @@ description = "Spring Boot Test Starter for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':spring-geode-starter')
|
||||
implementation project(':spring-geode-starter')
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter-test"
|
||||
compile 'org.springframework.data:spring-data-geode-test'
|
||||
implementation "org.springframework.boot:spring-boot-starter-test"
|
||||
implementation 'org.springframework.data:spring-data-geode-test'
|
||||
|
||||
}
|
||||
|
||||
@@ -5,11 +5,11 @@ description = "Spring Boot Starter for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile "org.springframework.boot:spring-boot-starter"
|
||||
implementation "org.springframework.boot:spring-boot-starter"
|
||||
|
||||
compile project(':spring-geode')
|
||||
compile project(':spring-geode-autoconfigure')
|
||||
implementation project(':spring-geode')
|
||||
implementation project(':spring-geode-autoconfigure')
|
||||
|
||||
runtime 'org.springframework.shell:spring-shell'
|
||||
runtimeOnly 'org.springframework.shell:spring-shell'
|
||||
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ dependencies {
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-mongodb"
|
||||
|
||||
runtime "org.hsqldb:hsqldb"
|
||||
runtimeOnly "org.hsqldb:hsqldb"
|
||||
|
||||
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
||||
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
||||
|
||||
@@ -9,33 +9,33 @@ description = "Spring Boot for Apache Geode"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(':apache-geode-extensions')
|
||||
implementation project(':apache-geode-extensions')
|
||||
|
||||
compile "org.springframework:spring-context-support"
|
||||
compile "org.springframework:spring-jcl"
|
||||
compile "org.springframework.boot:spring-boot-starter"
|
||||
compile "org.springframework.data:spring-data-geode"
|
||||
implementation "org.springframework:spring-context-support"
|
||||
implementation "org.springframework:spring-jcl"
|
||||
implementation "org.springframework.boot:spring-boot-starter"
|
||||
implementation "org.springframework.data:spring-data-geode"
|
||||
|
||||
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
|
||||
|
||||
optional "org.springframework:spring-test"
|
||||
|
||||
runtime "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
|
||||
runtimeOnly "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
|
||||
|
||||
testCompile "junit:junit"
|
||||
testCompile "org.assertj:assertj-core"
|
||||
testCompile "org.mockito:mockito-core"
|
||||
testCompile "org.projectlombok:lombok"
|
||||
testCompile "org.testcontainers:testcontainers"
|
||||
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.testcontainers:testcontainers"
|
||||
testImplementation "edu.umd.cs.mtc:multithreadedtc"
|
||||
|
||||
testCompile("org.springframework.boot:spring-boot-starter-test") {
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test") {
|
||||
exclude group: "org.skyscreamer", module: "jsonassert"
|
||||
}
|
||||
|
||||
testCompile "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
testCompile "org.springframework.boot:spring-boot-starter-data-cassandra"
|
||||
testCompile "org.springframework.data:spring-data-geode-test"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
||||
testImplementation "org.springframework.boot:spring-boot-starter-data-cassandra"
|
||||
testImplementation "org.springframework.data:spring-data-geode-test"
|
||||
|
||||
testRuntime "org.hsqldb:hsqldb"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user