30 lines
963 B
Groovy
30 lines
963 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: MAVEN_POM_EDITOR_GRADLE
|
|
|
|
description = "Spring Session for Apache Geode"
|
|
|
|
dependencies {
|
|
|
|
compile "org.springframework:spring-context-support"
|
|
compile "org.springframework:spring-jcl"
|
|
compile "org.springframework.data:spring-data-geode"
|
|
compile "org.springframework.session:spring-session-core:$springSessionVersion"
|
|
|
|
optional "org.springframework.security:spring-security-core"
|
|
optional "org.springframework.security:spring-security-web"
|
|
|
|
provided "javax.servlet:javax.servlet-api"
|
|
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "junit:junit"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
testCompile "org.springframework:spring-test"
|
|
testCompile "org.springframework:spring-web"
|
|
testCompile "org.springframework.data:spring-data-geode-test"
|
|
testCompile slf4jDependencies
|
|
|
|
integrationTestRuntime "org.springframework.shell:spring-shell"
|
|
|
|
}
|