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'.
19 lines
568 B
Groovy
19 lines
568 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Apache Geode Extensions"
|
|
|
|
dependencies {
|
|
|
|
compile "org.apache.geode:geode-core:$apacheGeodeVersion"
|
|
compile "org.apache.geode:geode-cq:$apacheGeodeVersion"
|
|
compile "org.apache.geode:geode-lucene:$apacheGeodeVersion"
|
|
compile "org.apache.geode:geode-wan:$apacheGeodeVersion"
|
|
|
|
testCompile "junit:junit"
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "org.projectlombok:lombok"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
|
|
}
|