fix(maven): avoid overriding existing sonar properties#32637
fix(maven): avoid overriding existing sonar properties#32637yuliuyi717-ux wants to merge 4 commits intojhipster:mainfrom
Conversation
4e7d9a8 to
2320f58
Compare
|
Rebased this branch onto the latest |
2320f58 to
2a1b91c
Compare
|
Quick update: I retriggered a fresh CI run on the latest branch head, and all checks are now green on this PR. The previously failing matrix jobs also passed in this run:
Please let me know if you’d like any follow-up changes. |
Summary
This change avoids noisy Maven warnings caused by
properties-maven-pluginoverriding properties already defined in the POM duringinitialize.What changed
<override>false</override>to the generatedproperties-maven-pluginconfiguration injava-simple-application:code-quality.override=false.Why
When reproducing the issue context from #22487 on current
main, plugin-validation warnings are no longer reproducible with current plugin versions, but the generated build still emits a large amount of property-clash warnings fromproperties-maven-plugin.This patch reduces that warning noise while keeping sonar property loading in place.
Refs #22487
Validation