Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreThis post was authored by Vedran Pavić
On behalf of the community I’m pleased to announce the release of Spring Session BOM Apple-SR3
. This release includes an update of Spring Session core modules (which include Data Redis, Hazelcast and JDBC) to 2.0.4.RELEASE
.
The following table provides an overview of all the included modules and their respective versions:
Module
Version
Spring Session Core
2.0.4.RELEASE
Spring Session Data GemFire
2.0.2.RELEASE
Spring Session Data Geode
2.0.2.RELEASE
Spring Session Data MongoDB
2.0.2.RELEASE
Spring Session Data Redis
2.0.4.RELEASE
Spring Session Hazelcast
2.0.4.RELEASE
Spring Session JDBC
2.0.4.RELEASE
The 2.0.4.RELEASE
maintenance release contains a couple of bug fixes for Hazelcast and JDBC session stores, as well as dependency upgrades. You can find the complete details of the release in the changelog.
With Maven:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-bom</artifactId>
<version>Apple-SR3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
</dependency>
...
</dependencies>
With Gradle:
plugins {
id 'io.spring.dependency-management' version '1.0.5.RELEASE'
}
dependencyManagement {
imports {
mavenBom 'org.springframework.session:spring-session-bom:Apple-SR3'
}
}
dependencies {
compile 'org.springframework.session:spring-session-data-redis'
...
}
Project Page | Documentation | GitHub | Issues | Stack Overflow | Gitter