Add dependency on spring-boot-starter-test; exclude spring-boot-starter-logging transitive dependency.

This commit is contained in:
John Blum
2018-01-25 16:33:05 -08:00
parent f5707c2dd7
commit cc0d96f173
2 changed files with 9 additions and 3 deletions

View File

@@ -19,4 +19,3 @@ ext.snapshotBuild = version.endsWith('SNAPSHOT')
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
ext.IDE_GRADLE = "$rootDir/gradle/ide.gradle"

View File

@@ -9,13 +9,20 @@ dependencies {
compile "org.springframework:spring-context-support"
compile "org.springframework:spring-jcl"
compile "org.springframework.data:spring-data-geode:$springDataGeodeVersion"
compile "org.springframework.boot:spring-boot-starter"
compile("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";
}
testCompile "org.assertj:assertj-core"
testCompile "junit:junit"
testCompile "org.mockito:mockito-core"
testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile "org.springframework:spring-test"
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";
}
testCompile slf4jDependencies
// integrationTestRuntime "org.springframework.shell:spring-shell"