We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11eb25d + c4267b0 commit 0ac0d83Copy full SHA for 0ac0d83
1 file changed
build.gradle.kts
@@ -172,10 +172,11 @@ signing {
172
nexusPublishing {
173
repositories {
174
sonatype {
175
- nexusUrl.set(uri("https://oss.sonatype.org/service/rest/"))
176
- snapshotRepositoryUrl.set(uri("https://oss.sonatype.org/content/repositories/snapshots/"))
177
- username.set(extra["ossrhUsername"] as String)
178
- password.set(extra["ossrhPassword"] as String)
+ nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
+ snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
+ username = extra["ossrhUsername"] as String
+ password = extra["ossrhPassword"] as String
179
+ stagingProfileId = extra["sonatypeStagingProfileId"] as String
180
}
181
-}
182
+}
0 commit comments