Skip to content

Commit

Permalink
OpenSearch 2.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Nioche <julien.nioche@telicent.io>
  • Loading branch information
Julien Nioche committed Jul 25, 2023
1 parent d9f76cf commit ba5eb61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM opensearchproject/opensearch:2.8.0
COPY target/releases/SynonymsPlugin-2.8.0.0.zip /tmp
RUN /usr/share/opensearch/bin/opensearch-plugin install --batch file:///tmp/SynonymsPlugin-2.8.0.0.zip
FROM opensearchproject/opensearch:2.9.0
COPY target/releases/SynonymsPlugin-2.9.0.0.zip /tmp
RUN /usr/share/opensearch/bin/opensearch-plugin install --batch file:///tmp/SynonymsPlugin-2.9.0.0.zip
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.telicent.opensearch</groupId>
<artifactId>SynonymsPlugin</artifactId>
<version>2.8.0.0</version>
<version>2.9.0.0</version>
<description>A plugin for OpenSearch providing an index-backed synonym
handler</description>
<properties>
<jdk.version>17</jdk.version>
<testcontainer.version>1.17.6</testcontainer.version>
<git-code-format-maven-plugin.version>4.2</git-code-format-maven-plugin.version>
<jackson.version>2.14.2</jackson.version>
<opensearch.version>2.8.0</opensearch.version>
<opensearch.version>2.9.0</opensearch.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private void setup(boolean security) throws Exception {
// https://github.com/opensearch-project/opensearch-testcontainers

String version = System.getProperty("opensearch-version");
if (version == null) version = "2.8.0";
if (version == null) version = "2.9.0";
LOG.info("Starting docker instance of OpenSearch {}...", version);

container = new OpensearchContainer("opensearchproject/opensearch:" + version);
Expand Down

0 comments on commit ba5eb61

Please sign in to comment.