From 367ffee8511afab1d9b5e1c44a4f7cf3092a2769 Mon Sep 17 00:00:00 2001 From: John Blum Date: Sat, 24 Jun 2023 09:54:45 -0700 Subject: [PATCH] Switch compile dependency task to implementation. --- spring-data-geode-test/build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spring-data-geode-test/build.gradle b/spring-data-geode-test/build.gradle index 03373e3..d4287a2 100644 --- a/spring-data-geode-test/build.gradle +++ b/spring-data-geode-test/build.gradle @@ -9,13 +9,13 @@ description = "Spring Test Framework for Apache Geode" dependencies { - compile "edu.umd.cs.mtc:multithreadedtc" - compile "junit:junit" - compile "org.assertj:assertj-core" - compile "org.mockito:mockito-core" - compile "org.projectlombok:lombok" - compile "org.springframework:spring-test" - compile "org.springframework.data:spring-data-geode" + implementation "edu.umd.cs.mtc:multithreadedtc" + implementation "junit:junit" + implementation "org.assertj:assertj-core" + implementation "org.mockito:mockito-core" + implementation "org.projectlombok:lombok" + implementation "org.springframework:spring-test" + implementation "org.springframework.data:spring-data-geode" compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"