Fix 5.x release: Migrate to Maven Central Publishing API - #1702
Merged
ricardozanini merged 4 commits intoSep 21, 2026
Merged
ricardozanini merged 4 commits into
ricardozanini merged 4 commits into
Conversation
Migrates from legacy Sonatype OSSRH to new Maven Central Publishing API. This resolves the 402 Payment Required error by using the new publishing system that respects the approved exemption limits (10 releases, 100 MB, 8160 files monthly for io.serverlessworkflow). Changes: - Add central-publishing-maven-plugin v0.11.0 - Update workflow server-id from 'ossrh' to 'central' - Remove distributionManagement section (handled by new plugin) - Simplify release:perform invocation Signed-off-by: GitHub Action <action@github.com>
Contributor
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
The changes match the established Maven Central migration pattern with no unresolved issues found.
Review effort: Lite
Findings: None
What changed in this PR
Migrates 5.x release publishing from legacy OSSRH to the Maven Central Publishing API.
Changes:
- Adds and configures the Central Publishing Maven plugin.
- Removes legacy Sonatype distribution management.
- Updates release workflow credentials and invocation.
| File | Description |
|---|---|
pom.xml |
Configures Central Publishing and removes OSSRH repositories. |
.github/workflows/release.yml |
Uses the central server ID and simplified release command. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
The plugin was only in pluginManagement, not in the active build/plugins section, causing maven-deploy-plugin to run instead. This resulted in: "repository element was not specified in the POM inside distributionManagement" Moving the plugin configuration to build/plugins ensures it's active during the release process. Signed-off-by: GitHub Action <action@github.com>
Collaborator
Author
|
Closing - recreating from upstream branch |
To match main branch structure, the plugin should only be in the active build/plugins section, not in pluginManagement. Signed-off-by: GitHub Action <action@github.com>
Add contents: write permission to allow pushing tags and commits. Signed-off-by: GitHub Action <action@github.com>
ricardozanini
merged commit Sep 21, 2026
90a7d1f
into
open-workflow-specification:5.x
3 checks passed
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.
Resolves the 402 Payment Required error when releasing from the 5.x branch.
Problem
The 5.x branch was still using the legacy Sonatype OSSRH publishing endpoint, which now enforces publishing limits with a 402 error. The approved exemption (10 releases, 100 MB, 8160 files monthly for io.serverlessworkflow) only applies to the new Maven Central Publishing API.
Solution
Backported the Maven Central migration from main (originally done in f20021f) to the 5.x branch:
central-publishing-maven-pluginv0.11.0server-idfromossrhtocentraldistributionManagementsection (new plugin handles this)release:performinvocationTesting
After merge, retry releases from 5.x - they should now publish successfully through the new API that respects the exemption limits.