File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import java.util.concurrent.TimeUnit
2727buildscript {
2828 ext {
2929 isSnapshot = " true" == System . getProperty(" build.snapshot" , " true" )
30- opensearch_version = System . getProperty(" opensearch.version" , " 3.2 .0-SNAPSHOT" )
30+ opensearch_version = System . getProperty(" opensearch.version" , " 3.3 .0-SNAPSHOT" )
3131 buildVersionQualifier = System . getProperty(" build.version_qualifier" , " " )
3232 // 2.2.0-SNAPSHOT -> 2.2.0.0-SNAPSHOT
3333 version_tokens = opensearch_version. tokenize(' -' )
@@ -294,8 +294,8 @@ publishing {
294294 name = " Snapshots"
295295 url = " https://central.sonatype.com/repository/maven-snapshots/"
296296 credentials {
297- username " $ System . env . SONATYPE_USERNAME "
298- password " $ System . env . SONATYPE_PASSWORD "
297+ username System . getenv( " SONATYPE_USERNAME" )
298+ password System . getenv( " SONATYPE_PASSWORD" )
299299 }
300300 }
301301 }
Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ publishing {
120120 name = " Snapshots"
121121 url = " https://central.sonatype.com/repository/maven-snapshots/"
122122 credentials {
123- username " $ System . env . SONATYPE_USERNAME "
124- password " $ System . env . SONATYPE_PASSWORD "
123+ username System . getenv( " SONATYPE_USERNAME" )
124+ password System . getenv( " SONATYPE_PASSWORD" )
125125 }
126126 }
127127 }
You can’t perform that action at this time.
0 commit comments