Skip to content

Commit 36f4c8a

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/checkout-5
2 parents 6c74dee + bba644a commit 36f4c8a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import java.util.concurrent.TimeUnit
2727
buildscript {
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
}

spi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)