-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump checkstyle to 10.21.1 and CodeNarc to 3.5.0
- Bump the checkstyle dependency from 8.1 to the latest version 10.21.1 - This is needed in particular for Java 21 support, see releasenotes: https://checkstyle.sourceforge.io/releasenotes.html#Release_10.18.0 - We need to bump to JDK 11 since the new version of checkstyle requires it: checkstyle/checkstyle#9146. - Migrate checkstyle xml to remove deprecated properties and add new modules, see: - checkstyle/checkstyle#7096 - checkstyle/checkstyle#6703 - Made TestFile.java public to trigger the missing javadoc warnings. - Bump CodeNarc from 1.4 to 3.5.0 due to class loading issues on JDK 11. - This means we also need to bump groovy to 3.0.9.
- Loading branch information
Jim Verheijde
committed
Dec 30, 2024
1 parent
17d84ff
commit fa795cf
Showing
4 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
class TestFile { | ||
public class TestFile { | ||
public String foo() { | ||
return "bar"; | ||
} | ||
|