Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<cs.spotbugs.version>3.1.12</cs.spotbugs.version>
<cs.spotbugs-maven-plugin.version>3.1.12.2</cs.spotbugs-maven-plugin.version>
<cs.jar-plugin.version>3.2.0</cs.jar-plugin.version>
<cs.pmd-plugin.version>3.12.0</cs.pmd-plugin.version>
<cs.pmd-plugin.version>3.28.0</cs.pmd-plugin.version>
Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updating maven-pmd-plugin to 3.28.0 upgrades the underlying PMD engine (per upstream release notes, PMD 7.x). Our configured ruleset cloud-pmd.xml (from org.apache.cloudstack:checkstyle) references legacy rule paths like rulesets/java/basic.xml (see tools/checkstyle/src/main/resources/cloud-pmd.xml:34), which are not compatible with PMD 7 rule category layouts. This will likely cause mvn pmd:check / cpd-check to fail because the referenced rulesets can’t be resolved. Please either update cloud-pmd.xml to PMD 7-compatible rule references (category-based rulesets), or keep/pin the plugin/PMD version to one that supports the current ruleset.

Suggested change
<cs.pmd-plugin.version>3.28.0</cs.pmd-plugin.version>
<cs.pmd-plugin.version>3.21.0</cs.pmd-plugin.version>

Copilot uses AI. Check for mistakes.
<cs.project-info-plugin.version>3.0.0</cs.project-info-plugin.version>
<cs.owasp.dependency-checker-plugin.version>7.4.4</cs.owasp.dependency-checker-plugin.version>
<cs.release-plugin.version>2.5.3</cs.release-plugin.version>
Expand Down
Loading