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 5c5032e4a2
commit c2cd6fd0a0
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ dependencies {
compile "org.springframework.boot:spring-boot-starter-test"
testCompile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") {
compile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}

View File

@@ -9,7 +9,7 @@ dependencies {
compile "org.springframework.boot:spring-boot-starter-test"
testCompile('org.springframework.data:spring-data-geode-test') {
compile('org.springframework.data:spring-data-geode-test') {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}