From c4c73709c8cb1af1e6d8610af03c3ee6dbbe481c Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 14 Nov 2025 13:56:29 +0100 Subject: [PATCH 01/13] Prepare next development iteration. See #3186 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c81bc28cc..c9d979011 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.data spring-data-elasticsearch - 6.0.0 + 6.0.1-SNAPSHOT org.springframework.data.build From 175614cd949b8c9eab3274edc504a3ea6ce25c4b Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 14 Nov 2025 13:56:30 +0100 Subject: [PATCH 02/13] After release cleanups. See #3186 --- Jenkinsfile | 2 +- pom.xml | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1d2500ed1..2cff32bd7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { triggers { pollSCM 'H/10 * * * *' - upstream(upstreamProjects: "spring-data-commons/main", threshold: hudson.model.Result.SUCCESS) + upstream(upstreamProjects: "spring-data-commons/4.0.x", threshold: hudson.model.Result.SUCCESS) } options { diff --git a/pom.xml b/pom.xml index c9d979011..fb8cd5e85 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.springframework.data.build spring-data-parent - 4.0.0 + 4.0.1-SNAPSHOT Spring Data Elasticsearch @@ -18,7 +18,7 @@ https://github.com/spring-projects/spring-data-elasticsearch - 4.0.0 + 4.0.1-SNAPSHOT 9.2.1 @@ -489,8 +489,20 @@ - - + + spring-snapshot + https://repo.spring.io/snapshot + + true + + + false + + + + spring-milestone + https://repo.spring.io/milestone + From bea651bc9539b18a68608bb0e9dd55e04ee17108 Mon Sep 17 00:00:00 2001 From: Peter-Josef Meisch Date: Fri, 14 Nov 2025 19:01:33 +0100 Subject: [PATCH 03/13] Fix documentation. Closes #3199 Signed-off-by: Peter-Josef Meisch (cherry picked from commit 5821a81db965ff09fef7ee46150ecd01e950f589) --- src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc b/src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc index 40cd83448..a44ea3649 100644 --- a/src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc +++ b/src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc @@ -461,7 +461,7 @@ To see what is actually sent to and received from the server `Request` / `Respon This can be enabled in the Elasticsearch client by setting the level of the `co.elastic.clients.transport.rest5_client.low_level.Request` package to "trace" (see https://www.elastic.co/docs/reference/elasticsearch/clients/java/transport/rest5-client/usage/logging) -.Enable transport layer logging +.Enable transport layer logging [tabs] ====== XML:: @@ -485,4 +485,4 @@ ini:: ---- logging.level.co.elastic.clients.transport.rest5_client.low_level.Request=trace ---- -===== +====== From b3bd77aa469ba91ef16706740b415751487d1a58 Mon Sep 17 00:00:00 2001 From: Peter-Josef Meisch Date: Tue, 25 Nov 2025 20:09:58 +0100 Subject: [PATCH 04/13] Adjust aot hints for Elasticsearch 9 client. The hints for the old httpclient are only needed when the old library is on the classpath, in case a user still uses the old RestClient. For the new Elasticsearch client there are no aot hints required. Closes: #3203 Signed-off-by: Peter-Josef Meisch (cherry picked from commit e31b66768bcd01ebbafd32e9f64b7cd33dbdda7f) --- .../aot/ElasticsearchClientRuntimeHints.java | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/main/java/org/springframework/data/elasticsearch/client/elc/aot/ElasticsearchClientRuntimeHints.java b/src/main/java/org/springframework/data/elasticsearch/client/elc/aot/ElasticsearchClientRuntimeHints.java index 2c177a13a..8c6bc14c5 100644 --- a/src/main/java/org/springframework/data/elasticsearch/client/elc/aot/ElasticsearchClientRuntimeHints.java +++ b/src/main/java/org/springframework/data/elasticsearch/client/elc/aot/ElasticsearchClientRuntimeHints.java @@ -24,6 +24,7 @@ import org.springframework.aot.hint.RuntimeHints; import org.springframework.aot.hint.RuntimeHintsRegistrar; import org.springframework.aot.hint.TypeReference; +import org.springframework.util.ClassUtils; /** * runtime hints for the Elasticsearch client libraries, as these do not provide any of their own. @@ -37,20 +38,20 @@ public class ElasticsearchClientRuntimeHints implements RuntimeHintsRegistrar { public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) { hints.reflection() - .registerType(TypeReference.of(IndexSettings.class), builder -> builder.withField("_DESERIALIZER")) // - .registerType(TypeReference.of(PutMappingRequest.class), builder -> builder.withField("_DESERIALIZER")) // - .registerType(TypeReference.of(RuntimeFieldType.class), builder -> builder.withField("_DESERIALIZER"))// - .registerType(TypeReference.of(TypeMapping.class), builder -> builder.withField("_DESERIALIZER")) // - ; + .registerType(TypeReference.of(IndexSettings.class), builder -> builder.withField("_DESERIALIZER")) + .registerType(TypeReference.of(PutMappingRequest.class), builder -> builder.withField("_DESERIALIZER")) + .registerType(TypeReference.of(RuntimeFieldType.class), builder -> builder.withField("_DESERIALIZER")) + .registerType(TypeReference.of(TypeMapping.class), builder -> builder.withField("_DESERIALIZER")); - hints.serialization() // - .registerType(org.apache.http.impl.auth.BasicScheme.class) // - .registerType(org.apache.http.impl.auth.RFC2617Scheme.class) // - .registerType(java.util.HashMap.class) // - ; + if (ClassUtils.isPresent("org.apache.http.impl.auth.BasicScheme", + ElasticsearchClientRuntimeHints.class.getClassLoader())) { + hints.serialization() + .registerType(org.apache.http.impl.auth.BasicScheme.class) + .registerType(org.apache.http.impl.auth.RFC2617Scheme.class) + .registerType(java.util.HashMap.class); + } hints.resources() // - .registerPattern("co/elastic/clients/version.properties") // - ; + .registerPattern("co/elastic/clients/version.properties"); } } From 6260f278ba507a8a84609a9152e7a6f49359e154 Mon Sep 17 00:00:00 2001 From: Peter-Josef Meisch Date: Thu, 4 Dec 2025 23:24:35 +0100 Subject: [PATCH 05/13] Fix UpdateQuery.Builder to allow only a scriptname to be set. Signed-off-by: Peter-Josef Meisch (cherry picked from commit 69746441e1341434d0a795b568ff205c25f652f1) --- .../elasticsearch/core/query/UpdateQuery.java | 4 +- .../core/query/UpdateQueryTest.java | 45 +++++++++++++++++++ 2 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 src/test/java/org/springframework/data/elasticsearch/core/query/UpdateQueryTest.java diff --git a/src/main/java/org/springframework/data/elasticsearch/core/query/UpdateQuery.java b/src/main/java/org/springframework/data/elasticsearch/core/query/UpdateQuery.java index e3e0db622..7e2dcfdab 100644 --- a/src/main/java/org/springframework/data/elasticsearch/core/query/UpdateQuery.java +++ b/src/main/java/org/springframework/data/elasticsearch/core/query/UpdateQuery.java @@ -438,8 +438,8 @@ public Builder withScriptName(String scriptName) { public UpdateQuery build() { - if (script == null && document == null && query == null) { - throw new IllegalArgumentException("either script, document or query must be set"); + if (script == null && scriptName == null && document == null && query == null) { + throw new IllegalArgumentException("either script, scriptName, document or query must be set"); } return new UpdateQuery(id, script, params, document, upsert, lang, routing, scriptedUpsert, docAsUpsert, diff --git a/src/test/java/org/springframework/data/elasticsearch/core/query/UpdateQueryTest.java b/src/test/java/org/springframework/data/elasticsearch/core/query/UpdateQueryTest.java new file mode 100644 index 000000000..2f4a780d1 --- /dev/null +++ b/src/test/java/org/springframework/data/elasticsearch/core/query/UpdateQueryTest.java @@ -0,0 +1,45 @@ +package org.springframework.data.elasticsearch.core.query; + +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Test; +import org.springframework.data.elasticsearch.core.document.Document; + +class UpdateQueryTest { + + @Test // #3205 + @DisplayName("should build query with only a script") + void shouldBuildQueryWithOnlyAScript() { + + UpdateQuery.builder("id") + .withScript("script") + .build(); + } + + @Test // #3205 + @DisplayName("should build query with only a scriptname") + void shouldBuildQueryWithOnlyAScriptName() { + + UpdateQuery.builder("id") + .withScriptName("scriptname") + .build(); + } + + @Test // #3205 + @DisplayName("should build query with only a document") + void shouldBuildQueryWithOnlyASDocument() { + + UpdateQuery.builder("id") + .withDocument(Document.create()) + .build(); + } + + @Test // #3205 + @DisplayName("should build query with only a query") + void shouldBuildQueryWithOnlyAQuery() { + + Query query = StringQuery.builder("StrignQuery").build(); + + UpdateQuery.builder(query) + .build(); + } +} From 44919d4cbe30146d5eaf1dbbbc415c6b29f4b15b Mon Sep 17 00:00:00 2001 From: Peter-Josef Meisch Date: Fri, 5 Dec 2025 00:01:14 +0100 Subject: [PATCH 06/13] Upgrade Elasticsearch to 9.2.2. Close #3208 Signed-off-by: Peter-Josef Meisch --- pom.xml | 4 ++-- .../modules/ROOT/pages/elasticsearch/elasticsearch-new.adoc | 2 +- .../antora/modules/ROOT/pages/elasticsearch/versions.adoc | 2 +- src/test/resources/testcontainers-elasticsearch.properties | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index fb8cd5e85..364ff26dd 100644 --- a/pom.xml +++ b/pom.xml @@ -21,8 +21,8 @@ 4.0.1-SNAPSHOT - 9.2.1 - 9.2.1 + 9.2.2 + 9.2.2 0.20.2 2.25.1 diff --git a/src/main/antora/modules/ROOT/pages/elasticsearch/elasticsearch-new.adoc b/src/main/antora/modules/ROOT/pages/elasticsearch/elasticsearch-new.adoc index 8d187634a..e04b6dfb3 100644 --- a/src/main/antora/modules/ROOT/pages/elasticsearch/elasticsearch-new.adoc +++ b/src/main/antora/modules/ROOT/pages/elasticsearch/elasticsearch-new.adoc @@ -6,7 +6,7 @@ * Upgrade to Spring 7 * Switch to jspecify nullability annotations -* Upgrade to Elasticsearch 9.2.1 +* Upgrade to Elasticsearch 9.2.2 * Use the new Elasticsearch Rest5Client as default * Add support for SpEL expressions in the `settingPath` parameter of the `@Setting` annotation diff --git a/src/main/antora/modules/ROOT/pages/elasticsearch/versions.adoc b/src/main/antora/modules/ROOT/pages/elasticsearch/versions.adoc index 9af35a774..93bdc14bf 100644 --- a/src/main/antora/modules/ROOT/pages/elasticsearch/versions.adoc +++ b/src/main/antora/modules/ROOT/pages/elasticsearch/versions.adoc @@ -6,7 +6,7 @@ The following table shows the Elasticsearch and Spring versions that are used by [cols="^,^,^,^",options="header"] |=== | Spring Data Release Train | Spring Data Elasticsearch | Elasticsearch | Spring Framework -| 2025.1 | 6.0.x | 9.2.1 | 7.0.x +| 2025.1 | 6.0.x | 9.2.2 | 7.0.x | 2025.0 | 5.5.x | 8.18.1 | 6.2.x | 2024.1 | 5.4.xfootnote:oom[Out of maintenance] | 8.15.5 | 6.1.x | 2024.0 | 5.3.xfootnote:oom[] | 8.13.4 | 6.1.x diff --git a/src/test/resources/testcontainers-elasticsearch.properties b/src/test/resources/testcontainers-elasticsearch.properties index 50a467206..5812e2c9a 100644 --- a/src/test/resources/testcontainers-elasticsearch.properties +++ b/src/test/resources/testcontainers-elasticsearch.properties @@ -15,7 +15,7 @@ # # sde.testcontainers.image-name=docker.elastic.co/elasticsearch/elasticsearch -sde.testcontainers.image-version=9.2.1 +sde.testcontainers.image-version=9.2.2 # # # needed as we do a DELETE /* at the end of the tests, will be required from 8.0 on, produces a warning since 7.13 From 535b4070851ed6dd06ae2091cdfef914caa4bf82 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 10 Dec 2025 08:35:04 +0100 Subject: [PATCH 07/13] Update CI Properties. See #3197 --- ci/pipeline.properties | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/pipeline.properties b/ci/pipeline.properties index ed898052b..9ce2972a2 100644 --- a/ci/pipeline.properties +++ b/ci/pipeline.properties @@ -14,11 +14,12 @@ docker.mongodb.8.0.version=8.0.9 # Supported versions of Redis docker.redis.6.version=6.2.13 docker.redis.7.version=7.2.4 +docker.redis.8.version=8.2.2 docker.valkey.8.version=8.1.1 # Docker environment settings -docker.java.inside.basic=-v $HOME:/tmp/jenkins-home -docker.java.inside.docker=-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker -v $HOME:/tmp/jenkins-home +docker.java.inside.basic=-v $HOME:/tmp/jenkins-home --ulimit nofile=32000:32000 +docker.java.inside.docker=-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker -v $HOME:/tmp/jenkins-home --ulimit nofile=32000:32000 # Credentials docker.registry= From 003d75f022c023eb07ee851011ea4b39adebd707 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 11 Dec 2025 08:59:58 +0100 Subject: [PATCH 08/13] =?UTF-8?q?Add=20`@ContextConfiguration(=E2=80=A6)`?= =?UTF-8?q?=20to=20test=20classes=20that=20use=20`@SpringIntegrationTest`?= =?UTF-8?q?=20on=20super=20classes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #3212 --- .../client/elc/ElasticsearchPartQueryELCIntegrationTests.java | 4 +++- .../notnested/EnableRepositoriesELCIntegrationTests.java | 2 ++ .../elasticsearch/core/IndexSettingsELCIntegrationTests.java | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/data/elasticsearch/client/elc/ElasticsearchPartQueryELCIntegrationTests.java b/src/test/java/org/springframework/data/elasticsearch/client/elc/ElasticsearchPartQueryELCIntegrationTests.java index 40f7dd7ce..777e77a77 100644 --- a/src/test/java/org/springframework/data/elasticsearch/client/elc/ElasticsearchPartQueryELCIntegrationTests.java +++ b/src/test/java/org/springframework/data/elasticsearch/client/elc/ElasticsearchPartQueryELCIntegrationTests.java @@ -21,14 +21,16 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates; -import org.springframework.data.elasticsearch.core.query.RepositoryPartQueryIntegrationTests; import org.springframework.data.elasticsearch.core.query.Query; +import org.springframework.data.elasticsearch.core.query.RepositoryPartQueryIntegrationTests; import org.springframework.data.elasticsearch.junit.jupiter.ElasticsearchTemplateConfiguration; +import org.springframework.test.context.ContextConfiguration; /** * @author Peter-Josef Meisch * @since 4.4 */ +@ContextConfiguration(classes = ElasticsearchPartQueryELCIntegrationTests.Config.class) public class ElasticsearchPartQueryELCIntegrationTests extends RepositoryPartQueryIntegrationTests { @Configuration diff --git a/src/test/java/org/springframework/data/elasticsearch/config/notnested/EnableRepositoriesELCIntegrationTests.java b/src/test/java/org/springframework/data/elasticsearch/config/notnested/EnableRepositoriesELCIntegrationTests.java index 9a56b5952..df0a02e9e 100644 --- a/src/test/java/org/springframework/data/elasticsearch/config/notnested/EnableRepositoriesELCIntegrationTests.java +++ b/src/test/java/org/springframework/data/elasticsearch/config/notnested/EnableRepositoriesELCIntegrationTests.java @@ -21,11 +21,13 @@ import org.springframework.data.elasticsearch.junit.jupiter.ElasticsearchTemplateConfiguration; import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories; import org.springframework.data.elasticsearch.utils.IndexNameProvider; +import org.springframework.test.context.ContextConfiguration; /** * @author Peter-Josef Meisch * @since 4.4 */ +@ContextConfiguration(classes = EnableRepositoriesELCIntegrationTests.Config.class) public class EnableRepositoriesELCIntegrationTests extends EnableRepositoriesIntegrationTests { @Configuration diff --git a/src/test/java/org/springframework/data/elasticsearch/core/IndexSettingsELCIntegrationTests.java b/src/test/java/org/springframework/data/elasticsearch/core/IndexSettingsELCIntegrationTests.java index d9d043b31..6e7283989 100644 --- a/src/test/java/org/springframework/data/elasticsearch/core/IndexSettingsELCIntegrationTests.java +++ b/src/test/java/org/springframework/data/elasticsearch/core/IndexSettingsELCIntegrationTests.java @@ -4,8 +4,11 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import org.springframework.data.elasticsearch.junit.jupiter.ElasticsearchTemplateConfiguration; +import org.springframework.test.context.ContextConfiguration; +@ContextConfiguration(classes = { IndexSettingsELCIntegrationTests.Config.class }) public class IndexSettingsELCIntegrationTests extends IndexSettingsIntegrationTests { + @Configuration @Import({ ElasticsearchTemplateConfiguration.class }) static class Config { @@ -14,4 +17,5 @@ public SpelSettingPath spelSettingPath() { return new SpelSettingPath(); } } + } From a7bd31110622320369525e2593127fd55b6e4da5 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 11 Dec 2025 09:02:33 +0100 Subject: [PATCH 09/13] Polishing. Simplify test dependency setup, remove no longer required servlet/xbean dependencies, exclude commons-lang3 in favor of the Testcontainers variant. Remove outdated commons-codec dependency in favor of the Testcontainers variant. See #3212 --- pom.xml | 51 +++++++++++++++++++++------------------------------ 1 file changed, 21 insertions(+), 30 deletions(-) diff --git a/pom.xml b/pom.xml index 364ff26dd..ddc236778 100644 --- a/pom.xml +++ b/pom.xml @@ -91,6 +91,27 @@ https://github.com/spring-projects/spring-data-elasticsearch/issues + + + + + + org.apache.commons + commons-lang3 + 3.19.0 + test + + + + commons-io + commons-io + 2.20.0 + test + + + + + @@ -301,21 +322,6 @@ test - - - org.apache.xbean - xbean-asm5-shaded - 4.5 - test - - - - javax.servlet - javax.servlet-api - 3.1.0 - test - - org.mockito mockito-junit-jupiter @@ -323,27 +329,12 @@ test - - org.apache.commons - commons-lang3 - 3.19.0 - test - - org.testcontainers testcontainers-elasticsearch test - - - commons-codec - commons-codec - 1.15 - test - - com.tngtech.archunit archunit-junit5 From e6aefc8180aeb7f66d278e56a77bea85dce843fe Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 12 Dec 2025 12:20:16 +0100 Subject: [PATCH 10/13] Prepare 6.0.1 (2025.1.1). See #3197 --- pom.xml | 20 ++++---------------- src/main/resources/notice.txt | 3 ++- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index ddc236778..b097132aa 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.springframework.data.build spring-data-parent - 4.0.1-SNAPSHOT + 4.0.1 Spring Data Elasticsearch @@ -18,7 +18,7 @@ https://github.com/spring-projects/spring-data-elasticsearch - 4.0.1-SNAPSHOT + 4.0.1 9.2.2 @@ -480,20 +480,8 @@ - - spring-snapshot - https://repo.spring.io/snapshot - - true - - - false - - - - spring-milestone - https://repo.spring.io/milestone - + + diff --git a/src/main/resources/notice.txt b/src/main/resources/notice.txt index eeb29799e..27985bb3f 100644 --- a/src/main/resources/notice.txt +++ b/src/main/resources/notice.txt @@ -1,4 +1,4 @@ -Spring Data Elasticsearch 6.0 GA (2025.1.0) +Spring Data Elasticsearch 6.0.1 (2025.1.1) Copyright (c) [2013-2022] Pivotal Software, Inc. This product is licensed to you under the Apache License, Version 2.0 (the "License"). @@ -16,3 +16,4 @@ conditions of the subcomponent's license, as noted in the LICENSE file. + From 66144d10f8d1757dddfc7e4e8cee532241dfd2c2 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 12 Dec 2025 12:20:35 +0100 Subject: [PATCH 11/13] Release version 6.0.1 (2025.1.1). See #3197 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b097132aa..cb8b0c13e 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.data spring-data-elasticsearch - 6.0.1-SNAPSHOT + 6.0.1 org.springframework.data.build From 597409c4c29d59d97720a9a3ec864f7d90a5010c Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 12 Dec 2025 12:22:55 +0100 Subject: [PATCH 12/13] Prepare next development iteration. See #3197 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb8b0c13e..d021cfb3a 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.data spring-data-elasticsearch - 6.0.1 + 6.0.2-SNAPSHOT org.springframework.data.build From 49cce254ce08e99ae546c7891ca755203f9427c3 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 12 Dec 2025 12:22:56 +0100 Subject: [PATCH 13/13] After release cleanups. See #3197 --- pom.xml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index d021cfb3a..bed7844ee 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.springframework.data.build spring-data-parent - 4.0.1 + 4.0.2-SNAPSHOT Spring Data Elasticsearch @@ -18,7 +18,7 @@ https://github.com/spring-projects/spring-data-elasticsearch - 4.0.1 + 4.0.2-SNAPSHOT 9.2.2 @@ -480,8 +480,20 @@ - - + + spring-snapshot + https://repo.spring.io/snapshot + + true + + + false + + + + spring-milestone + https://repo.spring.io/milestone +