Add test compile dependency on Spring Data for Apache Geode Test 0.0.1.BUILD-SNAPSHOT.

This commit is contained in:
John Blum
2018-08-08 17:23:02 -07:00
parent bd5a2cfae4
commit 055dd1f2be
3 changed files with 7 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ springVersion=5.0.7.RELEASE
springBootVersion=2.0.3.RELEASE
springDataGemFireVersion=2.0.8.RELEASE
springDataGeodeVersion=2.0.8.RELEASE
springDataGeodeTestVersion=0.0.1.BUILD-SNAPSHOT
springDataReleaseTrainVersion=Kay-SR8
springSessionVersion=2.0.4.RELEASE
springSessionBomVersion=Apple-SR3

View File

@@ -9,6 +9,7 @@ dependencyManagement {
dependency "org.apache.taglibs:taglibs-standard-impl:$apacheTaglibsStandardVersion"
dependency "org.apache.taglibs:taglibs-standard-jstlel:$apacheTaglibsStandardVersion"
dependency "org.apache.taglibs:taglibs-standard-spec:$apacheTaglibsStandardVersion"
dependency "org.springframework.data:spring-data-geode-test:$springDataGeodeTestVersion"
dependency "org.springframework.shell:spring-shell:$springShellVersion"
dependency 'org.webjars:bootstrap:2.3.2'
dependency 'org.webjars:jquery:1.12.4'

View File

@@ -3,6 +3,10 @@ apply from: IDE_GRADLE
description = "Spring Session for Apache Geode"
repositories {
maven { url "https://repo.spring.io/libs-snapshot" }
}
dependencies {
compile "org.springframework:spring-context-support"
@@ -21,6 +25,7 @@ dependencies {
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"