From c1a7900b610bf23f656533256dd0f42b7d840de8 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Sat, 31 May 2025 08:56:58 +0200 Subject: [PATCH] Add credentials for central.sonatype.com, remove credentials for oss.sonatype.org [Cherry-picked 33e89e984e2523feaa9b94c566f98a10b5fdedb3] --- project/Build.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Build.scala b/project/Build.scala index d6a97933362b..80e63806689c 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -286,7 +286,7 @@ object Build { for { username <- sys.env.get("SONATYPE_USER") password <- sys.env.get("SONATYPE_PW") - } yield Credentials("Sonatype Nexus Repository Manager", "oss.sonatype.org", username, password) + } yield Credentials("Sonatype Nexus Repository Manager", "central.sonatype.com", username, password) ).toList, PgpKeys.pgpPassphrase := sys.env.get("PGP_PW").map(_.toCharArray()), PgpKeys.useGpgPinentry := true,