Skip to content

Commit

Permalink
Build with OpenSearch 1.0.0-alpha2 (opensearch-project#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
cliu123 authored Apr 27, 2021
1 parent b95c050 commit cbe0ee8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
with:
repository: 'opensearch-project/OpenSearch'
path: OpenSearch
ref: '1.0.0-alpha1'
ref: '1.0.0-alpha2'

- name: Build OpenSearch
working-directory: ./OpenSearch
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=alpha1 -Dbuild.snapshot=false
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=alpha2 -Dbuild.snapshot=false

- name: Checkstyle
run: mvn -B checkstyle:checkstyle
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ Please refer to the [technical documentation](https://opendistro.github.io/for-e

* Install OpenSearch

* Install the opensearch-security plugin for your OpenSearch version 1.0.0-beta1, e.g.:
* Install the opensearch-security plugin for your OpenSearch version 1.0.0-alpha2, e.g.:

```
<OpenSearch directory>/bin/opensearch-plugin install \
-b com.amazon.opendistroforelasticsearch:opensearch-security:1.0.0.0-beta1
-b com.amazon.opendistroforelasticsearch:opensearch-security:1.0.0.0-alpha2
```

* ``cd`` into ``<OpenSearch directory>/plugins/opensearch-security/tools``
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ plugins {
buildDir = 'gradle-build'

ext {
opensearchVersion = '1.0.0.0-beta1'
opensearchVersion = '1.0.0.0-alpha2'
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
}

Expand Down
2 changes: 1 addition & 1 deletion plugin-descriptor.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
description=Provide access control related features for OpenSearch 1.0.0
#
# 'version': plugin's version
version=1.0.0.0-beta1
version=1.0.0.0-alpha2
#
# 'name': the plugin name
name=opensearch-security
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<groupId>com.amazon.opendistroforelasticsearch</groupId>
<artifactId>opensearch-security</artifactId>
<packaging>jar</packaging>
<version>1.0.0.0-beta1</version>
<version>1.0.0.0-alpha2</version>
<name>OpenSearch Security</name>
<description>OpenSearch Security</description>
<url>https://github.com/opensearch-project/security</url>
Expand Down Expand Up @@ -68,7 +68,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>

<opensearch.version>1.0.0-alpha1</opensearch.version>
<opensearch.version>1.0.0-alpha2</opensearch.version>

<!-- deps -->
<netty-native.version>2.0.25.Final</netty-native.version>
Expand Down Expand Up @@ -103,7 +103,7 @@
<url>https://github.com/opensearch-project/security</url>
<connection>scm:git:[email protected]:opensearch-project/security.git</connection>
<developerConnection>scm:git:[email protected]:opensearch-project/security.git</developerConnection>
<tag>1.0.0.0-beta1</tag>
<tag>1.0.0.0-alpha2</tag>
</scm>

<issueManagement>
Expand Down

0 comments on commit cbe0ee8

Please sign in to comment.