We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0366b commit 7e7b484Copy full SHA for 7e7b484
build.gradle
@@ -536,7 +536,11 @@ publishing {
536
def releasesRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots"
537
def snapshotsRepoUrl= "https://oss.sonatype.org/service/local/staging/deploy/maven2"
538
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
539
- credentials(PasswordCredentials)
+ //credentials(PasswordCredentials)
540
+ credentials {
541
+ username = System.getenv("ossrhUsername")
542
+ password = System.getenv("ossrhPassword")
543
+ }
544
}
545
// maven {
546
// name = "GitHubPackages"
0 commit comments