From 818c94a298cb40b8031e7a5712da9f28b49e2224 Mon Sep 17 00:00:00 2001 From: Julien Nioche Date: Sun, 29 Sep 2024 08:33:52 +0100 Subject: [PATCH] Bump OpenSearch to 2.17 + fix archetype version in README Signed-off-by: Julien Nioche --- external/opensearch/README.md | 2 +- external/opensearch/pom.xml | 2 +- .../stormcrawler/opensearch/bolt/AbstractOpenSearchTest.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/external/opensearch/README.md b/external/opensearch/README.md index a0b7e2e46..d126d9779 100644 --- a/external/opensearch/README.md +++ b/external/opensearch/README.md @@ -16,7 +16,7 @@ Getting started The easiest way is currently to use the archetype for OpenSearch with: -`mvn archetype:generate -DarchetypeGroupId=org.apache.stormcrawler -DarchetypeArtifactId=stormcrawler-opensearch-archetype -DarchetypeVersion=3.0` +`mvn archetype:generate -DarchetypeGroupId=org.apache.stormcrawler -DarchetypeArtifactId=stormcrawler-opensearch-archetype -DarchetypeVersion=3.1.0` You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version, a package name and details about the user agent to use. diff --git a/external/opensearch/pom.xml b/external/opensearch/pom.xml index f9c31b960..8b2205f09 100644 --- a/external/opensearch/pom.xml +++ b/external/opensearch/pom.xml @@ -30,7 +30,7 @@ under the License. - 2.16.0 + 2.17.0 false 0.27 diff --git a/external/opensearch/src/test/java/org/apache/stormcrawler/opensearch/bolt/AbstractOpenSearchTest.java b/external/opensearch/src/test/java/org/apache/stormcrawler/opensearch/bolt/AbstractOpenSearchTest.java index 2551d6b22..34ea24843 100644 --- a/external/opensearch/src/test/java/org/apache/stormcrawler/opensearch/bolt/AbstractOpenSearchTest.java +++ b/external/opensearch/src/test/java/org/apache/stormcrawler/opensearch/bolt/AbstractOpenSearchTest.java @@ -25,7 +25,7 @@ @Testcontainers(disabledWithoutDocker = true) public abstract class AbstractOpenSearchTest { - private static final String OPENSEARCH_VERSION = "2.16.0"; + private static final String OPENSEARCH_VERSION = "2.17.0"; public static final String PASSWORD = "This1sAPassw0rd";