Merge pull request #108393 from m4gr3d/update_maven_publishing_config

[Android] Update the maven publishing configuration following the deprecation of the OSSHR service
This commit is contained in:
Thaddeus Crews 2025-07-09 11:33:10 -05:00
commit 9bd0081e2f
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
5 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@ allprojects {
mavenCentral()
gradlePluginPortal()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/"}
maven { url "https://central.sonatype.com/repository/maven-snapshots/"}
// Godot user plugins custom maven repos
String[] mavenRepos = getGodotPluginsMavenRepos()

View file

@ -11,7 +11,7 @@ pluginManagement {
mavenCentral()
gradlePluginPortal()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/"}
maven { url "https://central.sonatype.com/repository/maven-snapshots/"}
}
}

View file

@ -18,7 +18,7 @@ allprojects {
mavenCentral()
gradlePluginPortal()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/"}
maven { url "https://central.sonatype.com/repository/maven-snapshots/"}
}
}

View file

@ -31,8 +31,8 @@ nexusPublishing {
stagingProfileId = sonatypeStagingProfileId
username = ossrhUsername
password = ossrhPassword
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}

View file

@ -14,7 +14,7 @@ pluginManagement {
mavenCentral()
gradlePluginPortal()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/"}
maven { url "https://central.sonatype.com/repository/maven-snapshots/"}
}
}