From 04dd1ee2cd39325b416b6450656ea0f2302e9e2d Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:38:59 +0530 Subject: [PATCH] fix(ci): exclude tooling modules from Maven Central release lifecycle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The release workflow failed because maven-javadoc-plugin scanned all source files in agenteval-intellij, including 5 files that import IntelliJ Platform SDK classes not available on the Maven classpath. The compiler plugin had excludes for these files, but javadoc does not inherit them. - Skip javadoc, source, deploy, install, GPG, and central-publishing for agenteval-intellij (distributed via JetBrains Marketplace) and agenteval-gradle-plugin (published to Gradle Plugin Portal) - Add waitMaxTime=30 to central-publishing-maven-plugin to prevent indefinite hangs during Maven Central publishing - Align BOM GPG plugin version (3.2.7 → 3.2.8) with parent --- agenteval-bom/pom.xml | 3 ++- agenteval-gradle-plugin/pom.xml | 14 ++++++++++++-- agenteval-intellij/pom.xml | 14 ++++++++++++-- pom.xml | 1 + 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/agenteval-bom/pom.xml b/agenteval-bom/pom.xml index 7e5d70f..0312ba6 100644 --- a/agenteval-bom/pom.xml +++ b/agenteval-bom/pom.xml @@ -42,7 +42,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.2.7 + 3.2.8 sign-artifacts @@ -62,6 +62,7 @@ central true published + 30 diff --git a/agenteval-gradle-plugin/pom.xml b/agenteval-gradle-plugin/pom.xml index 4500554..bfd9124 100644 --- a/agenteval-gradle-plugin/pom.xml +++ b/agenteval-gradle-plugin/pom.xml @@ -1,7 +1,7 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 @@ -14,6 +14,16 @@ AgentEval Gradle Plugin Gradle plugin for running AgentEval evaluations + + + true + true + true + true + true + true + + dev.gradleplugins diff --git a/agenteval-intellij/pom.xml b/agenteval-intellij/pom.xml index d3514dd..0e4c62f 100644 --- a/agenteval-intellij/pom.xml +++ b/agenteval-intellij/pom.xml @@ -1,7 +1,7 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 @@ -14,6 +14,16 @@ AgentEval IntelliJ Plugin IntelliJ IDEA plugin for viewing AgentEval evaluation results + + + true + true + true + true + true + true + + com.fasterxml.jackson.core diff --git a/pom.xml b/pom.xml index 50c8371..e028da8 100644 --- a/pom.xml +++ b/pom.xml @@ -434,6 +434,7 @@ central true published + 30