Skip to content

Commit a95cd97

Browse files
authored
deps: update dependency com.puppycrawl.tools:checkstyle to v9 (googleapis#1441)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.puppycrawl.tools:checkstyle](https://checkstyle.org/) ([source](https://togithub.com/checkstyle/checkstyle)) | `8.23` -> `9.0.1` | [![age](https://badges.renovateapi.com/packages/maven/com.puppycrawl.tools:checkstyle/9.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.puppycrawl.tools:checkstyle/9.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.puppycrawl.tools:checkstyle/9.0.1/compatibility-slim/8.23)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.puppycrawl.tools:checkstyle/9.0.1/confidence-slim/8.23)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/google-http-java-client).
1 parent 82b1bf3 commit a95cd97

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

checkstyle.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
<property name="eachLine" value="true"/>
3333
</module>
3434

35+
<module name="LineLength">
36+
<property name="max" value="100"/>
37+
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
38+
</module>
39+
3540
<module name="TreeWalker">
3641
<module name="OuterTypeFilename"/>
3742
<module name="IllegalTokenText">
@@ -46,10 +51,6 @@
4651
<property name="allowByTailComment" value="true"/>
4752
<property name="allowNonPrintableEscapes" value="true"/>
4853
</module>
49-
<module name="LineLength">
50-
<property name="max" value="100"/>
51-
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
52-
</module>
5354
<module name="AvoidStarImport"/>
5455
<module name="OneTopLevelClass"/>
5556
<module name="NoLineWrap"/>
@@ -239,12 +240,11 @@
239240
value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
240241
</module>
241242
<module name="JavadocMethod">
242-
<property name="scope" value="public"/>
243+
<property name="accessModifiers" value="public"/>
243244
<property name="allowMissingParamTags" value="true"/>
244-
<property name="allowMissingThrowsTags" value="true"/>
245245
<property name="allowMissingReturnTag" value="true"/>
246246
<property name="allowedAnnotations" value="Override, Test"/>
247-
<property name="allowThrowsTagsForSubclasses" value="true"/>
247+
<property name="validateThrows" value="true"/>
248248
</module>
249249
<module name="MissingJavadocMethod">
250250
<property name="scope" value="public"/>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@
667667
<dependency>
668668
<groupId>com.puppycrawl.tools</groupId>
669669
<artifactId>checkstyle</artifactId>
670-
<version>8.23</version>
670+
<version>9.0.1</version>
671671
</dependency>
672672
</dependencies>
673673
<configuration>

samples/dailymotion-simple-cmdline-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<dependency>
9696
<groupId>com.puppycrawl.tools</groupId>
9797
<artifactId>checkstyle</artifactId>
98-
<version>8.23</version>
98+
<version>9.0.1</version>
9999
</dependency>
100100
</dependencies>
101101
<configuration>

0 commit comments

Comments
 (0)