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 995a931 commit ec05cf7Copy full SHA for ec05cf7
build.gradle.kts
@@ -49,8 +49,8 @@ nexusPublishing {
49
sonatype {
50
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
51
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
52
- username.set(System.getenv("SONATYPE_USERNAME_TEST"))
53
- password.set(System.getenv("SONATYPE_PASSWORD_TEST"))
+ username.set("${findProperty("aws.sonatype.username") ?: System.getenv("SONATYPE_USERNAME_TEST")}")
+ password.set("${findProperty("aws.sonatype.password") ?: System.getenv("SONATYPE_PASSWORD_TEST")}")
54
}
55
56
0 commit comments