Switch publishing to sonatype central (#1121)

OSSRH is now EOL, so we need to publish to this new repository.
This commit is contained in:
Daniel Chao
2025-07-11 05:48:31 -07:00
committed by GitHub
parent 48ad4386c8
commit fea031a138

View File

@@ -32,8 +32,8 @@ plugins {
nexusPublishing {
repositories {
sonatype {
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/"))
}
}
}