Skip to content

Commit

Permalink
Bumped Checkstyle to version 10.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Dec 12, 2024
1 parent 02a626a commit 9aaad33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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, 20, 2)));
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 21, 0)));
```
4 changes: 2 additions & 2 deletions examples/src/bld/java/com/example/ExamplesBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ public ExamplesBuild() {

autoDownloadPurge = true;
downloadSources = true;

repositories = List.of(MAVEN_CENTRAL);

scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 2)));
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 21, 0)));

testOperation().mainClass("com.example.ExamplesTest");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public CheckstyleOperationBuild() {
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(2, 1, 0)));
scope(test)
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 20, 2)))
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 21, 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("org.assertj", "assertj-core", version(3, 26, 3)));
Expand Down

0 comments on commit 9aaad33

Please sign in to comment.