Fix incorrect scope on the 'org.springframework.data:spring-data-geode-test' dependency in the 'spring-geode-starter-test' module.

Fix incorrect scope on the 'org.springframework.data:spring-data-gemfire-test' dependency in the 'spring-gemfire-starter-test' module.

Resolves gh-50.
This commit is contained in:
John Blum
2019-08-22 22:45:03 -07:00
parent 40f5ddff7a
commit 8506702871
2 changed files with 5 additions and 3 deletions

View File

@@ -7,8 +7,10 @@ dependencies {
compile project(':spring-gemfire-starter')
compile "org.springframework.boot:spring-boot-starter-test"
compile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile "org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion"
compile "org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion"
}

View File

@@ -11,6 +11,6 @@ dependencies {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile 'org.springframework.data:spring-data-geode-test'
compile 'org.springframework.data:spring-data-geode-test'
}