Closed sofax closed 5 years ago
With later versions of some other Maven plugins, even v1.13 breaks the build. I have not yet been able to trace it down to a specific constellation though.
This seems to describe the same issue as https://github.com/mojohaus/license-maven-plugin/issues/145. I put up a proposal for a fix here https://github.com/mojohaus/license-maven-plugin/pull/148. Feel free to try it out.
Thanks, @srdo! We don't compile Maven plugins ourselves to avoid incompatibilities, but I'm hopeful that your pull request will be integrated into the next version of the plugin! :)
The fix for #145 was merged. @sofax , could you please test with a SNAPSHOT build from the current master?
It looks good, @ppalaga!
Situation:
A reactor project with nested reactor projects. The nested reactor project's parent is the root reactor project's pom.xml.
The nested reactor projects consist of two child modules each, where one is the main artifact, and the other is an integration test artifact for that main artifact.
With the following section in the root project's pom.xml the nested integration tests won't compile when mvn clean install is invoked from the root project, because the classes in the artifact under test are not found, even though that artifact, of course, is a dependency of the integration-test artifact:
The affected versions of the plugin, as of now, are 1.14 through 1.16. Version 1.13 still works.