File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed
samples/httpsession-gemfire-boot/src/main/java/sample/client Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ buildscript {
55 dependencies {
66 classpath(" com.bmuschko:gradle-tomcat-plugin:2.2.5" )
77 classpath(" org.springframework.build.gradle:propdeps-plugin:0.0.7" )
8- classpath(" io.spring.gradle:spring-io-plugin:0.0.4.RELEASE" )
8+ classpath(" io.spring.gradle:spring-io-plugin:0.0.5.RELEASE" )
9+ classpath(" io.spring.gradle:dependency-management-plugin:0.6.0.RELEASE" )
910 classpath(' me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1' )
1011 classpath ' org.asciidoctor:asciidoctor-gradle-plugin:1.5.2'
1112 classpath ' com.github.ben-manes:gradle-versions-plugin:0.12.0'
@@ -18,7 +19,7 @@ plugins {
1819
1920group = ' org.springframework.session'
2021
21- ext. springBootVersion = ' 1.3.2 .RELEASE'
22+ ext. springBootVersion = ' 1.4.0 .RELEASE'
2223ext. IDE_GRADLE = " $rootDir /gradle/ide.gradle"
2324ext. JAVA_GRADLE = " $rootDir /gradle/java.gradle"
2425ext. SPRING3_GRADLE = " $rootDir /gradle/spring3.gradle"
Original file line number Diff line number Diff line change @@ -33,12 +33,12 @@ dependencies {
3333 " org.springframework.security:spring-security-config:${ springSecurityVersion} " ,
3434 " org.springframework.security:spring-security-web:${ springSecurityVersion} " ,
3535 " org.springframework.security:spring-security-test:${ springSecurityVersion} " ,
36- ' junit:junit:4.11 ' ,
37- ' org.mockito:mockito-core:1.9.5 ' ,
36+ " junit:junit:$j unitVersion " ,
37+ " org.mockito:mockito-core:$m ockitoVersion " ,
3838 " org.springframework:spring-test:$springVersion " ,
3939 " org.assertj:assertj-core:$assertjVersion " ,
4040 " com.hazelcast:hazelcast:$hazelcastVersion " ,
41- " redis.clients:jedis:2.4.1 " ,
41+ " redis.clients:jedis:$j edisVersion " ,
4242 " javax.servlet:javax.servlet-api:$servletApiVersion "
4343}
4444
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ gebVersion=0.13.1
1313mockitoVersion =1.10.19
1414hazelcastVersion =3.5.4
1515seleniumVersion =2.52.0
16- springSecurityVersion =4.0 .3.RELEASE
17- springVersion =4.2.5 .RELEASE
16+ springSecurityVersion =4.1 .3.RELEASE
17+ springVersion =4.3.2 .RELEASE
1818httpClientVersion =4.5.1
1919jedisVersion =2.8.1
2020h2Version =1.4.192
2121springDataMongoVersion =1.9.1.RELEASE
2222springShellVersion =1.1.0.RELEASE
23- springDataGemFireVersion =1.8.1 .RELEASE
23+ springDataGemFireVersion =1.8.2 .RELEASE
2424springDataGeodeVersion =1.0.0.APACHE-GEODE-INCUBATING-M2
2525assertjVersion =2.3.0
2626spockVersion =1.0-groovy-2.4
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-2.10 -bin.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-3.0 -bin.zip
Original file line number Diff line number Diff line change @@ -157,8 +157,7 @@ PoolFactoryBean gemfirePool(
157157 gemfirePool .setPingInterval (TimeUnit .SECONDS .toMillis (15 ));
158158 gemfirePool .setRetryAttempts (1 );
159159 gemfirePool .setSubscriptionEnabled (true );
160- gemfirePool .setServerEndpoints (
161- Collections .singleton (newConnectionEndpoint (host , port )));
160+ gemfirePool .setServers (Collections .singleton (newConnectionEndpoint (host , port )));
162161
163162 return gemfirePool ;
164163 }
You can’t perform that action at this time.
0 commit comments