File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 9797 </excludes >
9898 </configuration >
9999 </plugin >
100+ <plugin >
101+ <groupId >org.apache.maven.plugins</groupId >
102+ <artifactId >maven-checkstyle-plugin</artifactId >
103+ <version >3.2.2</version >
104+ <configuration >
105+ <configLocation >google_checks.xml</configLocation >
106+ <linkXRef >false</linkXRef >
107+ <suppressionsLocation >
108+ src/main/resources/checkstyle-suppressions.xml
109+ </suppressionsLocation >
110+ <suppressionsFileExpression >
111+ checkstyle.suppressions.file
112+ </suppressionsFileExpression >
113+ </configuration >
114+ <executions >
115+ <execution >
116+ <goals >
117+ <goal >check</goal >
118+ </goals >
119+ </execution >
120+ </executions >
121+ </plugin >
100122 </plugins >
101123 </build >
102124
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" ?>
2+
3+ <!DOCTYPE suppressions PUBLIC
4+ "-//Puppy Crawl//DTD Suppressions 1.0//EN"
5+ "http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
6+
7+ <suppressions >
8+ <suppress checks =" Javadoc" files =" ." />
9+ </suppressions >
You can’t perform that action at this time.
0 commit comments