diff --git a/apache-geode-extensions/apache-geode-extensions.gradle b/apache-geode-extensions/apache-geode-extensions.gradle index c22665f5..5496e1b7 100644 --- a/apache-geode-extensions/apache-geode-extensions.gradle +++ b/apache-geode-extensions/apache-geode-extensions.gradle @@ -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" } diff --git a/spring-geode-actuator-autoconfigure/spring-geode-actuator-autoconfigure.gradle b/spring-geode-actuator-autoconfigure/spring-geode-actuator-autoconfigure.gradle index 5c6b4719..a5c78664 100644 --- a/spring-geode-actuator-autoconfigure/spring-geode-actuator-autoconfigure.gradle +++ b/spring-geode-actuator-autoconfigure/spring-geode-actuator-autoconfigure.gradle @@ -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" } diff --git a/spring-geode-actuator/spring-geode-actuator.gradle b/spring-geode-actuator/spring-geode-actuator.gradle index 6f54a24a..cbbfd992 100644 --- a/spring-geode-actuator/spring-geode-actuator.gradle +++ b/spring-geode-actuator/spring-geode-actuator.gradle @@ -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" } diff --git a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle index 4e8d6cf0..caae6aa7 100644 --- a/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle +++ b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle @@ -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" diff --git a/spring-geode-cloud/spring-geode-cloud.gradle b/spring-geode-cloud/spring-geode-cloud.gradle index 30822349..e26ba5f3 100644 --- a/spring-geode-cloud/spring-geode-cloud.gradle +++ b/spring-geode-cloud/spring-geode-cloud.gradle @@ -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" } diff --git a/spring-geode-docs/spring-geode-docs.gradle b/spring-geode-docs/spring-geode-docs.gradle index df1a3f40..dd56a0cb 100644 --- a/spring-geode-docs/spring-geode-docs.gradle +++ b/spring-geode-docs/spring-geode-docs.gradle @@ -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") } diff --git a/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle b/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle index 9432c331..0c3b2c71 100644 --- a/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle +++ b/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle @@ -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" } diff --git a/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle b/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle index 4c68c973..bf67236d 100644 --- a/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle +++ b/spring-geode-samples/boot/configuration/spring-geode-samples-boot-configuration.gradle @@ -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 { diff --git a/spring-geode-samples/boot/security/spring-geode-samples-boot-security.gradle b/spring-geode-samples/boot/security/spring-geode-samples-boot-security.gradle index df4d0dbf..4719a2d1 100644 --- a/spring-geode-samples/boot/security/spring-geode-samples-boot-security.gradle +++ b/spring-geode-samples/boot/security/spring-geode-samples-boot-security.gradle @@ -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 { diff --git a/spring-geode-samples/caching/http-session/spring-geode-samples-caching-httpsession.gradle b/spring-geode-samples/caching/http-session/spring-geode-samples-caching-httpsession.gradle index a8254544..5c5a229f 100644 --- a/spring-geode-samples/caching/http-session/spring-geode-samples-caching-httpsession.gradle +++ b/spring-geode-samples/caching/http-session/spring-geode-samples-caching-httpsession.gradle @@ -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" } diff --git a/spring-geode-samples/caching/inline-async/spring-geode-samples-caching-inline-async.gradle b/spring-geode-samples/caching/inline-async/spring-geode-samples-caching-inline-async.gradle index 32348dea..b8d82247 100644 --- a/spring-geode-samples/caching/inline-async/spring-geode-samples-caching-inline-async.gradle +++ b/spring-geode-samples/caching/inline-async/spring-geode-samples-caching-inline-async.gradle @@ -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" } diff --git a/spring-geode-samples/caching/inline/spring-geode-samples-caching-inline.gradle b/spring-geode-samples/caching/inline/spring-geode-samples-caching-inline.gradle index 5eec507a..a7febfaa 100644 --- a/spring-geode-samples/caching/inline/spring-geode-samples-caching-inline.gradle +++ b/spring-geode-samples/caching/inline/spring-geode-samples-caching-inline.gradle @@ -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" } diff --git a/spring-geode-samples/caching/look-aside/spring-geode-samples-caching-lookaside.gradle b/spring-geode-samples/caching/look-aside/spring-geode-samples-caching-lookaside.gradle index ff16d040..b9de4e14 100644 --- a/spring-geode-samples/caching/look-aside/spring-geode-samples-caching-lookaside.gradle +++ b/spring-geode-samples/caching/look-aside/spring-geode-samples-caching-lookaside.gradle @@ -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" } diff --git a/spring-geode-samples/caching/multi-site/spring-geode-samples-caching-multisite.gradle b/spring-geode-samples/caching/multi-site/spring-geode-samples-caching-multisite.gradle index 0cbc9a11..801eccbe 100644 --- a/spring-geode-samples/caching/multi-site/spring-geode-samples-caching-multisite.gradle +++ b/spring-geode-samples/caching/multi-site/spring-geode-samples-caching-multisite.gradle @@ -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" } diff --git a/spring-geode-samples/caching/near/spring-geode-samples-caching-near.gradle b/spring-geode-samples/caching/near/spring-geode-samples-caching-near.gradle index fbe9cde8..658de774 100644 --- a/spring-geode-samples/caching/near/spring-geode-samples-caching-near.gradle +++ b/spring-geode-samples/caching/near/spring-geode-samples-caching-near.gradle @@ -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" } diff --git a/spring-geode-samples/intro/getting-started/spring-geode-samples-getting-started.gradle b/spring-geode-samples/intro/getting-started/spring-geode-samples-getting-started.gradle index a31ee7e9..44872344 100644 --- a/spring-geode-samples/intro/getting-started/spring-geode-samples-getting-started.gradle +++ b/spring-geode-samples/intro/getting-started/spring-geode-samples-getting-started.gradle @@ -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" } diff --git a/spring-geode-samples/intro/quick-start/spring-geode-samples-quick-start.gradle b/spring-geode-samples/intro/quick-start/spring-geode-samples-quick-start.gradle index 1587d98c..716bf5e0 100644 --- a/spring-geode-samples/intro/quick-start/spring-geode-samples-quick-start.gradle +++ b/spring-geode-samples/intro/quick-start/spring-geode-samples-quick-start.gradle @@ -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" } diff --git a/spring-geode-starter-actuator/spring-geode-starter-actuator.gradle b/spring-geode-starter-actuator/spring-geode-starter-actuator.gradle index d4c0f5cc..9b26e55d 100644 --- a/spring-geode-starter-actuator/spring-geode-starter-actuator.gradle +++ b/spring-geode-starter-actuator/spring-geode-starter-actuator.gradle @@ -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") } diff --git a/spring-geode-starter-logging/spring-geode-starter-logging.gradle b/spring-geode-starter-logging/spring-geode-starter-logging.gradle index 758398bc..c805f4db 100644 --- a/spring-geode-starter-logging/spring-geode-starter-logging.gradle +++ b/spring-geode-starter-logging/spring-geode-starter-logging.gradle @@ -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") } diff --git a/spring-geode-starter-session/spring-geode-starter-session.gradle b/spring-geode-starter-session/spring-geode-starter-session.gradle index 58c76c8e..673bb9cf 100644 --- a/spring-geode-starter-session/spring-geode-starter-session.gradle +++ b/spring-geode-starter-session/spring-geode-starter-session.gradle @@ -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' } diff --git a/spring-geode-starter-test/spring-geode-starter-test.gradle b/spring-geode-starter-test/spring-geode-starter-test.gradle index 9c31c1c1..abce5f94 100644 --- a/spring-geode-starter-test/spring-geode-starter-test.gradle +++ b/spring-geode-starter-test/spring-geode-starter-test.gradle @@ -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' } diff --git a/spring-geode-starter/spring-geode-starter.gradle b/spring-geode-starter/spring-geode-starter.gradle index 98b429d3..82a3324f 100644 --- a/spring-geode-starter/spring-geode-starter.gradle +++ b/spring-geode-starter/spring-geode-starter.gradle @@ -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' } diff --git a/spring-geode-tests/smoke-tests/multi-store/spring-geode-smoke-tests-multi-store.gradle b/spring-geode-tests/smoke-tests/multi-store/spring-geode-smoke-tests-multi-store.gradle index 14ee129e..f8d8cbd7 100644 --- a/spring-geode-tests/smoke-tests/multi-store/spring-geode-smoke-tests-multi-store.gradle +++ b/spring-geode-tests/smoke-tests/multi-store/spring-geode-smoke-tests-multi-store.gradle @@ -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' diff --git a/spring-geode/spring-geode.gradle b/spring-geode/spring-geode.gradle index af84692e..242eaa20 100644 --- a/spring-geode/spring-geode.gradle +++ b/spring-geode/spring-geode.gradle @@ -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"