Skip to content

Commit

Permalink
Incremented version to 1.2.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
Read from SNAPSHOT maven repo, addressing #1466

Updated scm version tag to 1.2.0.0

Signed-off-by: Dave Lago <davelago@amazon.com>
  • Loading branch information
Dave Lago committed Oct 17, 2021
1 parent 6436c15 commit af30cf0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,6 @@ jobs:
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2

- name: Checkout OpenSearch
uses: actions/checkout@v2
with:
repository: 'opensearch-project/OpenSearch'
path: OpenSearch
ref: '1.1'

- name: Build OpenSearch
working-directory: ./OpenSearch
run: ./gradlew publishToMavenLocal

- name: Checkstyle
run: mvn -B checkstyle:checkstyle

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 {
securityPluginVersion = '1.1.0.0'
securityPluginVersion = '1.2.0.0'
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.1.0.0-SNAPSHOT
version=1.2.0.0-SNAPSHOT
#
# 'name': the plugin name
name=opensearch-security
Expand Down
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<groupId>org.opensearch</groupId>
<artifactId>opensearch-security</artifactId>
<packaging>jar</packaging>
<version>1.1.0.0-SNAPSHOT</version>
<version>1.2.0.0-SNAPSHOT</version>
<name>OpenSearch Security</name>
<description>OpenSearch Security</description>
<url>https://github.com/opensearch-project/security</url>
Expand Down Expand Up @@ -103,7 +103,7 @@
<url>https://github.com/opensearch-project/security</url>
<connection>scm:git:git@github.com:opensearch-project/security.git</connection>
<developerConnection>scm:git:git@github.com:opensearch-project/security.git</developerConnection>
<tag>1.1.0.0</tag>
<tag>1.2.0.0</tag>
</scm>

<issueManagement>
Expand Down Expand Up @@ -924,6 +924,14 @@
<version>${opensearch.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>with-static-openssl-linux-non-fedora</id>
Expand Down

0 comments on commit af30cf0

Please sign in to comment.