Spring Session Apple SR3 Released
This 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 |
|
Spring Session Data GemFire |
|
Spring Session Data Geode |
|
Spring Session Data MongoDB |
|
Spring Session Data Redis |
|
Spring Session Hazelcast |
|
Spring Session JDBC |
|
Spring Session
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.
Using the BOM
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