Skip to content

Commit f35b992

Browse files
authored
Merge branch 'main' into web/security-updates
2 parents 129d5c6 + 3094612 commit f35b992

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

api/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ publishing {
130130
def snapshotsRepoUrl = 'https://oss.sonatype.org/content/repositories/snapshots/'
131131
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
132132
credentials {
133-
username = System.getenv('SONATYPE_NEXUS_USERNAME')
134-
password = System.getenv('SONATYPE_NEXUS_PASSWORD')
133+
username = System.getenv('OSSRH_USERNAME')
134+
password = System.getenv('OSSRH_PASSWORD')
135135
}
136136
}
137137
}

clients/java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ publishing {
8686
def snapshotsRepoUrl = 'https://oss.sonatype.org/content/repositories/snapshots/'
8787
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
8888
credentials {
89-
username = System.getenv('SONATYPE_NEXUS_USERNAME')
90-
password = System.getenv('SONATYPE_NEXUS_PASSWORD')
89+
username = System.getenv('OSSRH_USERNAME')
90+
password = System.getenv('OSSRH_PASSWORD')
9191
}
9292
}
9393
}

0 commit comments

Comments
 (0)