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 4948bda commit d4efcc3Copy full SHA for d4efcc3
build-logic/convention/src/main/kotlin/PublishingConventionPlugin.kt
@@ -111,9 +111,9 @@ class PublishingConventionPlugin : Plugin<Project> {
111
repositories {
112
maven {
113
val releasesRepoUrl =
114
- uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
+ uri("https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/")
115
val snapshotsRepoUrl =
116
- uri("https://oss.sonatype.org/content/repositories/snapshots/")
+ uri("https://central.sonatype.com/repository/maven-snapshots/")
117
url = if (project.version.toString()
118
.endsWith("SNAPSHOT")
119
) snapshotsRepoUrl else releasesRepoUrl
0 commit comments