Skip to content

Commit

Permalink
Add default alpha1 to JS qualifier (#162)
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <zhujiaxi@amazon.com>
  • Loading branch information
peterzhuamazon authored Mar 31, 2022
1 parent 6e624d5 commit b10d2ad
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin
buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "2.0.0-alpha1-SNAPSHOT")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier", "alpha1")
}

repositories {
Expand Down Expand Up @@ -60,11 +62,6 @@ testClusters.javaRestTest {
testDistribution = 'INTEG_TEST'
}

ext {
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier")
}

allprojects {
group = 'org.opensearch'
version = opensearch_version.tokenize('-')[0] + '.0'
Expand Down

0 comments on commit b10d2ad

Please sign in to comment.