Refactor Gradle project dependencies.

Remove unnecessary 'javax.servlet:javax.servlet-api' provided dependency in 'spring-geode-autoconfigure'.

Remove unnecessary 'org.springframework.boot:spring-boot-starter-tomcat' runtime dependency from 'spring-geode-samples-caching-httpsession'.

Remove unnecessary 'javax.cache:cache-api' and 'org.springframework.shell:spring-shell' runtime dependencies from 'spring-geode-samples-caching-inline'.

Remove unnecessary 'javax.cache:cache-api' and 'org.springframework.shell:spring-shell' runtime dependencies from 'spring-geode-samples-caching-lookaside'.

Remove unnecessary 'javax.cache:cache-api' runtime dependency from 'spring-geode-samples-caching-near'.
This commit is contained in:
John Blum
2019-08-22 22:23:04 -07:00
parent 343a01aead
commit 40f5ddff7a
16 changed files with 27 additions and 56 deletions

View File

@@ -9,17 +9,12 @@ description = "Spring Geode Sample demonstrating the use of Spring Boot Actuator
dependencies {
compile project(":spring-geode-starter-actuator")
compile project(":spring-geode-starter-test")
compile ("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
compile "org.springframework.data:spring-data-geode-test"
runtime ("org.springframework.boot:spring-boot-starter-jetty") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
}
bootJar {

View File

@@ -11,10 +11,10 @@ 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"
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"