Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community I’m pleased to announce the release of Spring Session BOM Apple-SR2
. This release includes an update to the core modules and adds support for Spring Session for Apache Geode. You can use the BOM
With Maven:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-bom</artifactId>
<version>Apple-SR2</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-SR2'
}
}
dependencies {
compile 'org.springframework.session:spring-session-data-redis'
...
}