gnodet opened a new pull request, #12909: URL: https://github.com/apache/maven/pull/12909
## Summary - Fixed operator precedence bug in `DefaultModelBuilder.importDependencyManagement()` where BOM-type dependencies were incorrectly skipped during dependency management import processing. - The condition `!(pom AND import) OR bom` always evaluated to `true` for BOM-type dependencies due to `!` only negating the first clause. Changed to `!((pom AND import) OR bom)` so both pom/import and bom dependencies are correctly processed. ## Test plan - [x] All 578 tests in `impl/maven-impl` pass (0 failures, 0 errors) - [x] Full project builds successfully with `mvn install -DskipTests` 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- 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]
