diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml
index f7e10f8..bf65051 100644
--- a/.github/workflows/bld.yml
+++ b/.github/workflows/bld.yml
@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
- java-version: [17, 21, 23]
+ java-version: [17, 21, 22]
steps:
- name: Checkout source repository
diff --git a/README.md b/README.md
index 645b2c1..cac59a4 100644
--- a/README.md
+++ b/README.md
@@ -37,5 +37,5 @@ not provided by the extension. For example:
```java
repositories = List.of(MAVEN_CENTRAL);
-scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 19, 0)));
+scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 18, 2)));
```
diff --git a/config/pmd.xml b/config/pmd.xml
index 2641880..3d3203c 100644
--- a/config/pmd.xml
+++ b/config/pmd.xml
@@ -7,9 +7,9 @@
+
+
-
-
diff --git a/examples/lib/bld/bld-wrapper.properties b/examples/lib/bld/bld-wrapper.properties
index 1a304ce..d673d49 100644
--- a/examples/lib/bld/bld-wrapper.properties
+++ b/examples/lib/bld/bld-wrapper.properties
@@ -1,7 +1,7 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
-bld.extension-checkstyle=com.uwyn.rife2:bld-checkstyle:1.0.6
+bld.extension-checkstyle=com.uwyn.rife2:bld-checkstyle:1.0.5
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=2.1.0
diff --git a/examples/src/bld/java/com/example/ExamplesBuild.java b/examples/src/bld/java/com/example/ExamplesBuild.java
index f8fee6b..df0f79a 100644
--- a/examples/src/bld/java/com/example/ExamplesBuild.java
+++ b/examples/src/bld/java/com/example/ExamplesBuild.java
@@ -23,7 +23,7 @@ public class ExamplesBuild extends BaseProject {
repositories = List.of(MAVEN_CENTRAL);
- scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 19, 0)));
+ scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 18, 2)));
testOperation().mainClass("com.example.ExamplesTest");
}
diff --git a/lib/bld/bld-wrapper.properties b/lib/bld/bld-wrapper.properties
index 196e2c9..a283f1b 100644
--- a/lib/bld/bld-wrapper.properties
+++ b/lib/bld/bld-wrapper.properties
@@ -2,7 +2,7 @@ bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.extension-exec=com.uwyn.rife2:bld-exec:1.0.3
-bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.7
+bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.6
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=2.1.0
diff --git a/src/bld/java/rife/bld/extension/CheckstyleOperationBuild.java b/src/bld/java/rife/bld/extension/CheckstyleOperationBuild.java
index 2b0c0c5..e3a9e06 100644
--- a/src/bld/java/rife/bld/extension/CheckstyleOperationBuild.java
+++ b/src/bld/java/rife/bld/extension/CheckstyleOperationBuild.java
@@ -33,7 +33,7 @@ public class CheckstyleOperationBuild extends Project {
public CheckstyleOperationBuild() {
pkg = "rife.bld.extension";
name = "CheckstyleOperation";
- version = version(1, 0, 6);
+ version = version(1, 0, 5);
javaRelease = 17;
@@ -45,9 +45,9 @@ public class CheckstyleOperationBuild extends Project {
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(2, 1, 0)));
scope(test)
- .include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 19, 0)))
- .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 3)))
- .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 3)))
+ .include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 18, 2)))
+ .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 1)))
+ .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 1)))
.include(dependency("org.assertj", "assertj-core", version(3, 26, 3)));
javadocOperation()
diff --git a/src/main/java/rife/bld/extension/checkstyle/OutputFormat.java b/src/main/java/rife/bld/extension/checkstyle/OutputFormat.java
index 6ff411b..c37a585 100644
--- a/src/main/java/rife/bld/extension/checkstyle/OutputFormat.java
+++ b/src/main/java/rife/bld/extension/checkstyle/OutputFormat.java
@@ -26,9 +26,6 @@ public enum OutputFormat {
public final String label;
- /**
- * Sets the label of this output format.
- */
OutputFormat(String label) {
this.label = label;
}
diff --git a/src/test/java/rife/bld/extension/CheckstyleOperationTest.java b/src/test/java/rife/bld/extension/CheckstyleOperationTest.java
index e532cdf..53ff576 100644
--- a/src/test/java/rife/bld/extension/CheckstyleOperationTest.java
+++ b/src/test/java/rife/bld/extension/CheckstyleOperationTest.java
@@ -38,6 +38,7 @@ import java.util.logging.Logger;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatCode;
+
class CheckstyleOperationTest {
public static final String SRC_MAIN_JAVA = "src/main/java";
public static final String SRC_TEST_JAVA = "src/test/java";