Switch direct [test] compile dependency on 'org.springframework.data:spring-data-geode-test' to 'spring-geode-starter-test'.

This commit is contained in:
John Blum
2019-08-22 23:14:21 -07:00
parent c2cd6fd0a0
commit 82881e2f73
5 changed files with 7 additions and 25 deletions

View File

@@ -11,15 +11,11 @@ description = "Spring Geode Sample demonstrating the use of Spring Boot Auto-Con
dependencies {
compile project(":spring-geode-starter")
compile project(":spring-geode-starter-test")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
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"
}
testCompile "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -13,14 +13,10 @@ dependencies {
runtime "org.springframework.boot:spring-boot-starter-thymeleaf"
testCompile project(":spring-geode-starter-session")
testCompile project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile("org.springframework.data:spring-data-geode-test") {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
}
bootJar {

View File

@@ -17,12 +17,9 @@ dependencies {
runtime "org.hsqldb:hsqldb"
runtime "org.springframework.boot:spring-boot-starter-jetty"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile project(":spring-geode-starter-test")
testCompile("org.springframework.data:spring-data-geode-test") {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
testCompile "org.springframework.boot:spring-boot-starter-test"
}

View File

@@ -10,13 +10,9 @@ dependencies {
runtime "org.springframework.boot:spring-boot-starter-jetty"
testCompile project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile("org.springframework.data:spring-data-geode-test") {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
}
bootJar {

View File

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