Skip to content

Commit 30f37a4

Browse files
committed
Update credentials to use ossrhUsername/ossrhPassword
1 parent 926ef49 commit 30f37a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ publishing {
9595
"https://s01.oss.sonatype.org/content/repositories/snapshots/" :
9696
"https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
9797
credentials {
98-
username = findProperty("mavenCentralUsername") ?: System.getenv("MAVEN_CENTRAL_USERNAME")
99-
password = findProperty("mavenCentralPassword") ?: System.getenv("MAVEN_CENTRAL_PASSWORD")
98+
username = findProperty("ossrhUsername") ?: System.getenv("OSSRH_USERNAME")
99+
password = findProperty("ossrhPassword") ?: System.getenv("OSSRH_PASSWORD")
100100
}
101101
}
102102
}

0 commit comments

Comments
 (0)