From 05e1304cc9ac43a7298cb61a7aa2fb473cc68e9a Mon Sep 17 00:00:00 2001 From: James Kebinger Date: Mon, 22 Sep 2025 16:56:41 -0500 Subject: [PATCH] Disable conflicting Nexus Staging plugin from basepom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add skipNexusStagingDeployMojo=true to prevent the old nexus-staging-maven-plugin from running alongside the new central-publishing-maven-plugin. Fixes "Server credentials with ID sonatype-nexus-staging not found" error. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 477fc5a..8dd45f9 100644 --- a/pom.xml +++ b/pom.xml @@ -22,6 +22,7 @@ true true + true 3.3.2 32.1.3-jre 2.15.3 @@ -248,6 +249,13 @@ central-publishing-maven-plugin true + + org.sonatype.plugins + nexus-staging-maven-plugin + + true + +