Remove spring-boot-starter-test dependency and replace with individual test artitfact dependencies.

This commit is contained in:
John Blum
2018-08-21 19:50:37 -07:00
parent 4430e43880
commit f772d19b1b

View File

@@ -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";
}
}