We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4383073 commit 042aca8Copy full SHA for 042aca8
core/build.gradle.kts
@@ -187,7 +187,10 @@ publishing {
187
repositories {
188
if (isSonatypeRelease) {
189
maven {
190
- url = uri("https://s01.oss.sonatype.org/content/repositories/releases/")
+ // Temporarily switching to Sonatype OSSRH Staging API
191
+ // until the maven-publish plugin adds support for the new Central Portal
192
+ // see: https://central.sonatype.org/publish/publish-portal-ossrh-staging-api/
193
+ url = uri("https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/")
194
195
credentials {
196
username = System.getenv("SONATYPE_USER")
0 commit comments