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 257abc4 commit dabe43fCopy full SHA for dabe43f
publish.gradle
@@ -51,8 +51,8 @@ signing {
51
nexusPublishing {
52
repositories {
53
sonatype {
54
- nexusUrl.set(uri('https://s01.oss.sonatype.org/service/local/'))
55
- snapshotRepositoryUrl.set(uri('https://s01.oss.sonatype.org/content/repositories/snapshots/'))
+ nexusUrl.set(uri(System.getenv('MAVEN_REPO_URL')))
+ snapshotRepositoryUrl.set(uri(System.getenv('MAVEN_STAGING_URL')))
56
username.set(System.getenv('MAVEN_USERNAME'))
57
password.set(System.getenv('MAVEN_PASSWORD'))
58
}
0 commit comments