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