From 9399becf4e045ffb64506ccf10126307bb239ae1 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 13 Jun 2025 03:30:14 -0700 Subject: [PATCH] Move React Native publishing URLs to Central Portal (#51693) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51693 This moves React Native to use the Central Portal URLs rather than the legacy OSSRH ones. See https://github.com/gradle-nexus/publish-plugin for more context. Changelog: [Internal] [Changed] - Reviewed By: cipolleschi Differential Revision: D75673984 fbshipit-source-id: 1de6746809eed72f232eac0c3fb4d809c2046620 --- build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index d848efee0ab..09283ba30c6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -54,6 +54,8 @@ nexusPublishing { sonatype { username.set(sonatypeUsername) password.set(sonatypePassword) + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) } } }