From 33f8cf80bf47897ee60485027b4eb325f46c8dc3 Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Mon, 3 Feb 2025 16:21:39 -0500 Subject: [PATCH] Spring Data Elasticsearch 6.0 baseline Signed-off-by: Andriy Redko --- README.md | 1 + settings.gradle.kts | 14 ++++++++++---- version.properties | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 85419de3..6703d7da 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ The Spring Data OpenSearch follows the release model of the Spring Data Elastics | Spring Data Release Train | Spring Data OpenSearch | Spring Data Elasticsearch | OpenSearch Server | OpenSearch Client | Spring Framework | Spring Boot | |---------------------------|------------------------|---------------------------|-------------------|-------------------|------------------|---------------| +| 2025.1 | 2.0.x | 6.0.x | 1.x / 2.x / 3.x | 2.10.x and above | 7.0.x | 3.5.x | | 2025.0 | 1.7.x | 5.5.x | 1.x / 2.x / 3.x | 2.10.x and above | 6.2.x | 3.4.x | | 2024.1 | 1.6.x | 5.4.x | 1.x / 2.x | 2.10.x and above | 6.2.x | 3.4.x | | 2024.0 | 1.5.x | 5.3.x | 1.x / 2.x | 2.10.x and above | 6.1.x | 3.2.x / 3.3.x | diff --git a/settings.gradle.kts b/settings.gradle.kts index 36bbd31a..924e9333 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -16,10 +16,10 @@ dependencyResolutionManagement { } create("springLibs") { - version("spring", "6.2.7") - version("spring-boot", "3.4.5") - library("data-commons", "org.springframework.data:spring-data-commons:3.5.0") - library("data-elasticsearch", "org.springframework.data:spring-data-elasticsearch:5.5.0") + version("spring", "7.0.0-M5") + version("spring-boot", "3.5.0") + library("data-commons", "org.springframework.data:spring-data-commons:4.0.0-M3") + library("data-elasticsearch", "org.springframework.data:spring-data-elasticsearch:6.0.0-M3") library("web", "org.springframework", "spring-web").versionRef("spring") library("context", "org.springframework", "spring-context").versionRef("spring") library("tx", "org.springframework", "spring-tx").versionRef("spring") @@ -74,12 +74,18 @@ pluginManagement { maven { url = uri("https://repo.spring.io/release/") } + maven { + url = uri("https://repo.spring.io/milestone/") + } } } dependencyResolutionManagement { repositories { mavenCentral() + maven { + url = uri("https://repo.spring.io/milestone/") + } } } diff --git a/version.properties b/version.properties index be570df1..97d695b3 100644 --- a/version.properties +++ b/version.properties @@ -1 +1 @@ -version=1.7.0 +version=2.0.0