Skip to content

Commit c2779f7

Browse files
committed
Bumped Checkstyle to version 10.20.1
1 parent 6f3e444 commit c2779f7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ not provided by the extension. For example:
3737

3838
```java
3939
repositories = List.of(MAVEN_CENTRAL);
40-
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 0)));
40+
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 1)));
4141
```

examples/src/bld/java/com/example/ExamplesBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public ExamplesBuild() {
2323

2424
repositories = List.of(MAVEN_CENTRAL);
2525

26-
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 0)));
26+
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 1)));
2727

2828
testOperation().mainClass("com.example.ExamplesTest");
2929
}

src/bld/java/rife/bld/extension/CheckstyleOperationBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public CheckstyleOperationBuild() {
4545
scope(compile)
4646
.include(dependency("com.uwyn.rife2", "bld", version(2, 1, 0)));
4747
scope(test)
48-
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 0)))
48+
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 1)))
4949
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 3)))
5050
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 3)))
5151
.include(dependency("org.assertj", "assertj-core", version(3, 26, 3)));

0 commit comments

Comments
 (0)