Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The OpenSearch Config Sync Plugin provides seamless distribution and synchroniza

| Plugin Version | OpenSearch Version | Java Version |
|---------------|--------------------|--------------|
| 3.2.x | 3.2.0+ | 21+ |
| 3.7.x | 3.7.0+ | 21+ |

## Version History

Expand All @@ -33,10 +33,10 @@ Please file an [issue](https://github.com/codelibs/opensearch-configsync/issues)
## Installation

```bash
$OPENSEARCH_HOME/bin/opensearch-plugin install org.codelibs.opensearch:opensearch-configsync:3.2.0
$OPENSEARCH_HOME/bin/opensearch-plugin install org.codelibs.opensearch:opensearch-configsync:3.7.0
```

**Note**: Replace `3.2.0` with the latest version available in the [Maven Repository](https://repo1.maven.org/maven2/org/codelibs/opensearch/opensearch-configsync/).
**Note**: Replace `3.7.0` with the latest version available in the [Maven Repository](https://repo1.maven.org/maven2/org/codelibs/opensearch/opensearch-configsync/).

## Getting Started

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.codelibs.opensearch</groupId>
<artifactId>opensearch-configsync</artifactId>
<version>3.6.1-SNAPSHOT</version>
<version>3.7.0-SNAPSHOT</version>
<packaging>jar</packaging>
<description>This plugin synchronizes OpenSearch configuration files across nodes, enabling consistent settings and secure, automated updates in distributed environments.</description>
<inceptionYear>2011</inceptionYear>
Expand Down Expand Up @@ -36,8 +36,8 @@
<tag>HEAD</tag>
</scm>
<properties>
<opensearch.version>3.6.0</opensearch.version>
<opensearch.runner.version>3.6.0.0</opensearch.runner.version>
<opensearch.version>3.7.0</opensearch.version>
<opensearch.runner.version>3.7.0.0</opensearch.runner.version>
<opensearch.plugin.classname>org.codelibs.opensearch.configsync.ConfigSyncPlugin</opensearch.plugin.classname>
<maven.compiler.target>21</maven.compiler.target>
<log4j.version>2.25.3</log4j.version>
Expand Down
Loading