fix(ci): exclude tooling modules from Maven Central release lifecycle#47
Merged
pratyush618 merged 1 commit intomainfrom Mar 29, 2026
Merged
fix(ci): exclude tooling modules from Maven Central release lifecycle#47pratyush618 merged 1 commit intomainfrom
pratyush618 merged 1 commit intomainfrom
Conversation
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
maven-javadoc-pluginscanning IntelliJ SDK-dependent source files inagenteval-intellij, producing 50+ compilation errors (all 3 recent release runs failed)agenteval-intellijandagenteval-gradle-plugin— these modules are distributed via JetBrains Marketplace and Gradle Plugin Portal respectively, not Maven CentralwaitMaxTime=30tocentral-publishing-maven-pluginto prevent indefinite workflow hangs, and align BOM GPG plugin version with parentChanges
agenteval-intellij/pom.xml— add skip properties for all release phasesagenteval-gradle-plugin/pom.xml— add skip properties for all release phasespom.xml— addwaitMaxTimeto central-publishing-maven-pluginagenteval-bom/pom.xml— addwaitMaxTime, align GPG plugin version 3.2.7 → 3.2.8Test plan
mvn verify -Bpasses — all 18 modules build successfully0.1.0tag after merge