Skip to content

Commit c28f047

Browse files
committed
Extract spring-session-data-hazelcast
Issue gh-806
1 parent 972cf66 commit c28f047

File tree

19 files changed

+10
-4
lines changed

19 files changed

+10
-4
lines changed

docs/spring-session-docs.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apply plugin: 'io.spring.convention.spring-test'
44
dependencies {
55
testCompile project(':spring-session-core')
66
testCompile project(':spring-session-data-redis')
7+
testCompile project(':spring-session-hazelcast')
78
testCompile "org.springframework:spring-jdbc"
89
testCompile "org.springframework:spring-messaging"
910
testCompile "org.springframework:spring-webmvc"

samples/javaconfig/hazelcast/spring-session-sample-javaconfig-hazelcast.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'io.spring.convention.spring-sample-war'
22

33
dependencies {
4-
compile project(':spring-session-core')
4+
compile project(':spring-session-hazelcast')
55
compile "org.springframework:spring-web"
66
compile "org.springframework.security:spring-security-config"
77
compile "org.springframework.security:spring-security-web"

spring-session-core/spring-session-core.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@ dependencies {
1212
optional "org.springframework:spring-websocket"
1313
optional "org.springframework.security:spring-security-core"
1414
optional "org.springframework.security:spring-security-web"
15-
optional "com.hazelcast:hazelcast"
1615

1716
provided "javax.servlet:javax.servlet-api"
1817

1918
integrationTestCompile "org.apache.commons:commons-pool2"
2019
integrationTestCompile "org.apache.derby:derby"
2120
integrationTestCompile "com.h2database:h2"
22-
integrationTestCompile "com.hazelcast:hazelcast-client"
2321
integrationTestCompile "org.hsqldb:hsqldb"
2422

2523
testCompile "junit:junit"
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
apply plugin: 'io.spring.convention.spring-pom'
1+
apply plugin: 'io.spring.convention.spring-module'
22

33
dependencies {
44
compile project(':spring-session-core')
55
compile "com.hazelcast:hazelcast"
6+
compile "org.springframework:spring-context"
7+
8+
testCompile "javax.servlet:javax.servlet-api"
9+
testCompile "org.springframework.security:spring-security-core"
10+
testCompile "org.springframework:spring-web"
11+
12+
integrationTestCompile "com.hazelcast:hazelcast-client"
613
}

0 commit comments

Comments
 (0)