Depend on the released Doxia 1.12.0, not the snapshot - #241
Merged
slachiewicz merged 1 commit intoAug 4, 2026
Merged
Conversation
The branch still asks for doxia 1.12.0-SNAPSHOT, which is long gone from the snapshot repository, so every build fails before it compiles: Could not find artifact org.apache.maven.doxia:doxia-sink-api:jar:1.12.0-SNAPSHOT 1.12.0 was released, so this is just dropping the -SNAPSHOT suffix. dependency:resolve succeeds afterwards and picks up doxia-sink-api, doxia-core and doxia-logging-api at 1.12.0. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
@slachiewicz The PR can't be associated to a milestone, because there are multiple open milestones. Please add the text "branch: maven-reporting-impl-3.x" to the description to the milestone where this PR belongs to. |
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.
This branch's build fails before it compiles anything:
doxiaVersionis still1.12.0-SNAPSHOT. That snapshot is long gone from the snapshot repository, and 1.12.0 was released — so this is just dropping the suffix. It is the only-SNAPSHOTdependency in the POM; the project's own3.3.0-SNAPSHOTversion is untouched.dependency:resolvesucceeds afterwards, picking updoxia-sink-api,doxia-coreanddoxia-logging-apiat 1.12.0 alongside the sitetools artifacts already pinned at 1.11.1.I could not run a full build locally — the branch targets Java 7 and my JDK is too new (
Source option 7 is no longer supported); CI builds it on JDK 8/11/17. Dependency resolution is the part that was failing and it is what I verified.Heads-up for the next build: this branch is also on parent
maven-shared-components34, whose apache-rat 0.13 rejects the.mvn/wrapper/maven-wrapper.propertiesthat the Jenkins shared library now generates. Once resolution is fixed, the build will most likely reach the RAT check and fail there. apache/maven-reporting-api#77 is the same fix for the sibling repository. Context in apache/maven#12676.