File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 27
27
<property name =" message" value =" Space needed around ':' character." />
28
28
</module >
29
29
30
+ <!-- Checks for Size Violations. -->
31
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
32
+ <module name =" LineLength" >
33
+ <property name =" max" value =" 120" />
34
+ </module >
35
+
30
36
<module name =" TreeWalker" >
31
37
<!-- Checks for Javadoc comments. -->
32
38
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
59
65
<property name =" processJavadoc" value =" true" />
60
66
</module >
61
67
62
-
63
- <!-- Checks for Size Violations. -->
64
- <!-- See http://checkstyle.sf.net/config_sizes.html -->
65
- <module name =" LineLength" >
66
- <property name =" max" value =" 120" />
67
- </module >
68
68
<module name =" MethodLength" >
69
69
<property name =" max" value =" 200" />
70
70
</module >
71
71
72
-
73
72
<!-- Checks for whitespace -->
74
73
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
75
74
<module name =" GenericWhitespace" />
Original file line number Diff line number Diff line change 211
211
<plugin >
212
212
<groupId >org.apache.maven.plugins</groupId >
213
213
<artifactId >maven-checkstyle-plugin</artifactId >
214
- <version >3.1.0</version >
214
+ <version >3.1.1</version >
215
+ <dependencies >
216
+ <dependency >
217
+ <groupId >com.puppycrawl.tools</groupId >
218
+ <artifactId >checkstyle</artifactId >
219
+ <version >8.39</version >
220
+ </dependency >
221
+ </dependencies >
215
222
<configuration >
216
223
<failsOnError >true</failsOnError >
217
224
<configLocation >checkstyle.xml</configLocation >
You can’t perform that action at this time.
0 commit comments