-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ParserNotFoundException on dependency-updates-aggregate-report (2.16.2) #1046
Comments
I checked with various versions of the plugin:
So it appears this issue was introduced in 2.15.0. Looking at the release notes, the problem may be related to the Doxia Core 2.0.0 preparation issue #905. |
Couldn't not reproduce the reported issue with Maven 3.9.6. Tried reproducing the issue with https://github.com/jarmoniuk/versions-maven-plugin/tree/issue-1046/versions-maven-plugin/src/it/it-dependency-updates-aggregate-report-issue-1046 Please see the result:
|
It appears that the
dependency-updates-aggregate-report
goal is completely broken in 2.16.2. There is a workaround, but it requires linking todoxia-core
2.0.0-M6 (and not to a later version).All of the below is tested with the latest stable version of Apache Maven 3.9.6.
Steps to Reproduce
mvn org.codehaus.mojo:versions-maven-plugin:2.16.2:dependency-updates-aggregate-report
.Expected Result
target/dependency-updates-aggregate-report.xml
is generated.Actual Result
Sample
Here is a sample setup. Have this
pom.xml
in the top-level folder:Have this as
module1/pom.xml
:And finally this as the
module2/pom.xml
:Workaround
Workaround is to link to a newer version of
doxia-core
, but not the newest version. With version2.0.0-M6
it works, but not with2.0.0-M9
:The text was updated successfully, but these errors were encountered: