Skip to content

Commit f8e60af

Browse files
committed
Spring Data Elasticsearch 6.0 baseline
Signed-off-by: Andriy Redko <drreta@gmail.com>
1 parent 14bb1cd commit f8e60af

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The Spring Data OpenSearch follows the release model of the Spring Data Elastics
2424

2525
| Spring Data Release Train | Spring Data OpenSearch | Spring Data Elasticsearch | OpenSearch Server | OpenSearch Client | Spring Framework | Spring Boot |
2626
|---------------------------|------------------------|---------------------------|-------------------|-------------------|------------------|---------------|
27+
| 2025.1 | 3.0.x | 6.0.x | 1.x / 2.x / 3.x | 2.10.x and above | 7.0.x | 3.5.x |
2728
| 2025.0 | 1.8.x | 5.5.x | 1.x / 2.x / 3.x | 2.10.x and above | 6.2.x | 3.5.x |
2829
| 2025.0 | 1.7.x | 5.5.x | 1.x / 2.x / 3.x | 2.10.x and above | 6.2.x | 3.5.x |
2930
| 2024.1 | 1.6.x | 5.4.x | 1.x / 2.x | 2.10.x and above | 6.2.x | 3.4.x |

settings.gradle.kts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ dependencyResolutionManagement {
1616
}
1717

1818
create("springLibs") {
19-
version("spring", "6.2.8")
19+
version("spring", "7.0.0-M6")
2020
version("spring-boot", "3.5.3")
21-
library("data-commons", "org.springframework.data:spring-data-commons:3.5.1")
22-
library("data-elasticsearch", "org.springframework.data:spring-data-elasticsearch:5.5.1")
21+
library("data-commons", "org.springframework.data:spring-data-commons:4.0.0-M3")
22+
library("data-elasticsearch", "org.springframework.data:spring-data-elasticsearch:6.0.0-M3")
2323
library("web", "org.springframework", "spring-web").versionRef("spring")
2424
library("webflux", "org.springframework", "spring-webflux").versionRef("spring")
2525
library("context", "org.springframework", "spring-context").versionRef("spring")
@@ -32,7 +32,7 @@ dependencyResolutionManagement {
3232
library("boot-test", "org.springframework.boot", "spring-boot-test").versionRef("spring-boot")
3333
library("boot-test-autoconfigure", "org.springframework.boot", "spring-boot-test-autoconfigure").versionRef("spring-boot")
3434
library("boot-testcontainers", "org.springframework.boot", "spring-boot-testcontainers").versionRef("spring-boot")
35-
library("projectreactor", "io.projectreactor:reactor-test:3.7.7")
35+
library("projectreactor", "io.projectreactor:reactor-test:3.8.0-M4")
3636
plugin("spring-boot", "org.springframework.boot").versionRef("spring-boot")
3737
}
3838

@@ -77,12 +77,18 @@ pluginManagement {
7777
maven {
7878
url = uri("https://repo.spring.io/release/")
7979
}
80+
maven {
81+
url = uri("https://repo.spring.io/milestone/")
82+
}
8083
}
8184
}
8285

8386
dependencyResolutionManagement {
8487
repositories {
8588
mavenCentral()
89+
maven {
90+
url = uri("https://repo.spring.io/milestone/")
91+
}
8692
}
8793
}
8894

version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.8.2
1+
version=3.0.0

0 commit comments

Comments
 (0)