From c79103a68ff04ff21bbdc542705514f3ce346853 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 7 Dec 2021 21:27:05 -0800 Subject: [PATCH] Change 'compile' dependencies to 'implementation' dependencies. --- 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 c9253c0..ae8a5a5 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"