This commit improves existing Hazelcast support, which is based on MapSessionRepository, with dedicated HazelcastSessionRepository that implements the FindByIndexNameSessionRepository contract. Also a new hazelcast-spring-session module was added to provide dependency management for Hazelcast support. Fixes gh-544
20 lines
372 B
Groovy
20 lines
372 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: MAVEN_GRADLE
|
|
|
|
apply plugin: 'spring-io'
|
|
|
|
description = "Aggregator for Spring Session and Hazelcast"
|
|
|
|
dependencies {
|
|
compile project(':spring-session'),
|
|
"com.hazelcast:hazelcast:$hazelcastVersion"
|
|
}
|
|
|
|
dependencyManagement {
|
|
springIoTestRuntime {
|
|
imports {
|
|
mavenBom "io.spring.platform:platform-bom:${springIoVersion}"
|
|
}
|
|
}
|
|
}
|