From 117fa494f7a873f53d3d27537417d82d8d76ab72 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 11 Jun 2025 16:12:06 -0700 Subject: [PATCH] Migrate from OSSRH to Central Portal (#1816) Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1816 This migrates Yoga to publish to Central Portal rather than OSSRC Reviewed By: NickGerleman Differential Revision: D76436235 fbshipit-source-id: ddaaa95472054aa2b09399b5cc8d821dae51234f --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 3dec0644..6352e5c9 100644 --- a/build.gradle +++ b/build.gradle @@ -34,6 +34,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/")) } } }