From f772d19b1be75f2ee11d05d5ce327717b14374bd Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 21 Aug 2018 19:50:37 -0700 Subject: [PATCH] Remove spring-boot-starter-test dependency and replace with individual test artitfact dependencies. --- spring-data-geode-test/build.gradle | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/spring-data-geode-test/build.gradle b/spring-data-geode-test/build.gradle index 9deea26..80335f8 100644 --- a/spring-data-geode-test/build.gradle +++ b/spring-data-geode-test/build.gradle @@ -8,10 +8,12 @@ repositories { 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" - compile("org.springframework.boot:spring-boot-starter-test") { - exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"; - } - }