From 6de4758a6d0cc2ab8faebf5c478f046fdf43d178 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 19 Oct 2022 14:52:53 -0500 Subject: [PATCH] Remove Spring Session for Apache Geode Closes gh-217 --- README.adoc | 1 - RELEASE.adoc | 2 +- build.gradle | 1 - gradle.properties | 1 - gradle/dependency-management.gradle | 2 -- 5 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.adoc b/README.adoc index bc5b10b..421d20e 100644 --- a/README.adoc +++ b/README.adoc @@ -87,7 +87,6 @@ dependencies { If you want to raise an issue, please report it in the appropriate Spring Session project: * For issues in Spring Session MongoDB, use https://github.com/spring-projects/spring-session-data-mongodb -* For issues in Spring Session for Apache Geode or VMware Tanzu GemFire please use https://github.com/spring-projects/spring-session-data-geode * For issues in Spring Session Data Redis, JDBC, Hazelcast or in core Spring Session please use https://github.com/spring-projects/spring-session == Code of Conduct diff --git a/RELEASE.adoc b/RELEASE.adoc index 7590647..5aa6121 100644 --- a/RELEASE.adoc +++ b/RELEASE.adoc @@ -1,7 +1,7 @@ == 1. Update Dependencies Dependencies are declared in `gradle/dependency-management.gradle`. -Update the `coreVersion` to the corresponding version of `spring-session-core` and `dataGeodeVersion` to the corresponding version of `spring-session-data-geode`. +Update the `coreVersion` to the corresponding version of `spring-session-core`. Run all the checks: diff --git a/build.gradle b/build.gradle index ae25fb5..8f1feac 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,6 @@ group = "org.springframework.session" dependencies { constraints { api "org.springframework.session:spring-session-core:$springSessionCoreVersion" - api "org.springframework.session:spring-session-data-geode:$springSessionDataGeodeVersion" api "org.springframework.session:spring-session-data-mongodb:$springSessionCoreVersion" api "org.springframework.session:spring-session-data-redis:$springSessionCoreVersion" api "org.springframework.session:spring-session-hazelcast:$springSessionCoreVersion" diff --git a/gradle.properties b/gradle.properties index 145c7a4..98c99a2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,2 @@ version=2022.0.0-SNAPSHOT springSessionCoreVersion=3.0.0-RC1 -springSessionDataGeodeVersion=3.0.0-M3 diff --git a/gradle/dependency-management.gradle b/gradle/dependency-management.gradle index c2a713f..39bd07f 100644 --- a/gradle/dependency-management.gradle +++ b/gradle/dependency-management.gradle @@ -1,6 +1,5 @@ ext { coreVersion = '3.0.0-M3' - dataGeodeVersion = '3.0.0-M3' dataMongoDbVersion = coreVersion dataRedisVersion = coreVersion hazelcastVersion = coreVersion @@ -10,7 +9,6 @@ ext { dependencyManagement { dependencies { dependency "org.springframework.session:spring-session-core:$coreVersion" - dependency "org.springframework.session:spring-session-data-geode:$dataGeodeVersion" dependency "org.springframework.session:spring-session-data-mongodb:$dataMongoDbVersion" dependency "org.springframework.session:spring-session-data-redis:$dataRedisVersion" dependency "org.springframework.session:spring-session-hazelcast:$hazelcastVersion"