sbrougher-cainc opened a new pull request, #1327:
URL: https://github.com/apache/maven-assembly-plugin/pull/1327

   Resolve transitive dependencies from the full declared dependency graph and 
apply the scope filter only when resolving, instead of pre-filtering the 
declared dependencies by scope before collection. Pre-filtering hid 
declarations that win Maven's mediation. This includes nearer versions, or 
directly provided dependencies, when the relevant declared dependency appeared 
transitively. This is clearly visible in the old version of the now-corrected 
`src/it/projects/dependency-sets/massembly-1008/verify.groovy` file. Despite 
being declared as `test` scoped in the pom, `guava` and all of its children 
were pulled into the assembly.
   
   Note: in the new version of the code, even though `guava` is also declared 
as a transitive dependency of `guice`, `guava` will not be present in the final 
version of the assembly because the declared scope of `guava` is `test`. This 
is consistent with the compile/runtime classpath resolved by 
`maven-dependency-plugin` and the `maven-jar-plugin`.
   
   This fixes when provided dependencies are included when they also occur 
transitively (MASSEMBLY-1031) and the wrong version being assembled on a 
cross-scope version conflict (MASSEMBLY-1026). The existing massembly-1008 
integration test asserted the previous, incorrect output and is corrected to 
match Maven's resolution. Note: while this corrects two issues, this is because 
those two issues have the same underlying cause.
   
   The substantive changes are just a few lines in 
`DefaultDependencyResolver.java`; everything else is testing.
   
   Following this checklist to help us incorporate your contribution quickly 
and easily:
   
   - [X] Your pull request should address just one issue, without pulling in 
other changes.
   - [X] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   - [X] Each commit in the pull request should have a meaningful subject line 
and body.
     Note that commits might be squashed by a maintainer on merge.
   - [X] Write unit tests that match behavioral changes, where the tests fail 
if the changes to the runtime are not applied.
     This may not always be possible but is a best-practice.
   - [X] Run `mvn verify` to make sure basic checks pass.
     A more thorough check will be performed on your pull request automatically.
   - [X] You have run the integration tests successfully (`mvn -Prun-its 
verify`).
   
   If your pull request is about ~20 lines of code you don't need to sign an
   [Individual Contributor License 
Agreement](https://www.apache.org/licenses/icla.pdf) if you are unsure
   please ask on the developers list.
   
   To make clear that you license your contribution under
   the [Apache License Version 2.0, January 
2004](http://www.apache.org/licenses/LICENSE-2.0)
   you have to acknowledge this by using the following check-box.
   
   - [X] I hereby declare this contribution to be licenced under the [Apache 
License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
   - [ ] In any other case, please file an [Apache Individual Contributor 
License Agreement](https://www.apache.org/licenses/icla.pdf).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to