Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* Watchdog that keeps track of sources processed during a build. When the builder fails to report progress for a period of time, a warning will be logged,
* along with the stack traces for all threads of the running application.
*/
@SuppressWarnings("PMD.OverridingThreadRun") // Intentionally a Thread subclass: named thread with start()/interrupt() lifecycle managed by MonitoredClusteringBuilderState.
public class BuilderWatchdog extends Thread {

private static final Logger LOGGER = LogManager.getLogger(BuilderWatchdog.class);
Expand Down
2 changes: 1 addition & 1 deletion ddk-configuration/pmd/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<exclude name="NonExhaustiveSwitch"/>
<exclude name="UnnecessaryWarningSuppression"/> <!--Experimental, too many false positives-->
<exclude name="UnusedLocalVariable"/><!--Checkstyle-->
<exclude name="JUnit5TestShouldBePackagePrivate"/>
<exclude name="JUnitJupiterTestShouldBePackagePrivate"/>
</rule>
<rule ref="category/java/bestpractices.xml/GuardLogStatement">
<properties>
Expand Down
2 changes: 1 addition & 1 deletion ddk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<spotbugs.plugin.version>4.9.8.3</spotbugs.plugin.version>
<spotbugs.version>4.9.8</spotbugs.version>
<pmd.plugin.version>3.28.0</pmd.plugin.version>
<pmd.version>7.24.0</pmd.version>
<pmd.version>7.25.0</pmd.version>
<tycho.version>5.0.3</tycho.version>
<xtend.version>2.43.0</xtend.version>

Expand Down