Skip to content

Commit a6c2da8

Browse files
Add qualifier default to alpha1 in build.gradle (#151)
Signed-off-by: Peter Zhu <[email protected]>
1 parent f2f57e5 commit a6c2da8

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

build.gradle

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ buildscript {
77
ext {
88
opensearch_group = "org.opensearch"
99
opensearch_version = System.getProperty("opensearch.version", "2.0.0-alpha1-SNAPSHOT")
10+
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
11+
buildVersionQualifier = System.getProperty("build.version_qualifier", "alpha1")
1012
kotlin_version = System.getProperty("kotlin.version", "1.6.10")
1113
}
1214

@@ -38,11 +40,6 @@ repositories {
3840
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
3941
}
4042

41-
ext {
42-
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
43-
buildVersionQualifier = System.getProperty("build.version_qualifier")
44-
}
45-
4643
allprojects {
4744
group 'org.opensearch.commons'
4845
version = opensearch_version.tokenize('-')[0] + '.0'

0 commit comments

Comments
 (0)