gnodet opened a new pull request, #12930:
URL: https://github.com/apache/maven/pull/12930
## Summary
Backport of #12722 to `maven-4.0.x`.
`importDependencyManagement` skipped every dependency with `type=bom`
because of operator precedence:
```java
if (!(pom && import) || bom) {
continue;
}
```
For `type=bom` the `|| bom` term is always true, so BOM-typed entries never
loaded managed dependencies. This fix treats `(pom && import) || bom` as an
import BOM/POM entry.
Fixes #12589
--
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]