Skip to content

Commit b60f648

Browse files
author
Kai Song
committed
bf43d4e replay all
1 parent 91ee67f commit b60f648

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
</properties>
193193

194194
<build>
195-
<defaultGoal>clean verify apache-rat:check clirr:check javadoc:javadoc</defaultGoal>
195+
<defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check findbugs:check javadoc:javadoc</defaultGoal>
196196
<plugins>
197197
<plugin>
198198
<artifactId>maven-assembly-plugin</artifactId>
@@ -227,6 +227,26 @@
227227
</ignorePathsToDelete>
228228
</configuration>
229229
</plugin>
230+
<plugin>
231+
<groupId>org.apache.maven.plugins</groupId>
232+
<artifactId>maven-checkstyle-plugin</artifactId>
233+
<version>2.15</version>
234+
<configuration>
235+
<configLocation>${basedir}/src/conf/checkstyle.xml</configLocation>
236+
<enableRulesSummary>false</enableRulesSummary>
237+
<suppressionsLocation>${basedir}/src/conf/checkstyle-suppressions.xml</suppressionsLocation>
238+
</configuration>
239+
</plugin>
240+
<plugin>
241+
<groupId>org.codehaus.mojo</groupId>
242+
<artifactId>findbugs-maven-plugin</artifactId>
243+
<version>3.0.1</version>
244+
<configuration>
245+
<threshold>Normal</threshold>
246+
<effort>Default</effort>
247+
<excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile>
248+
</configuration>
249+
</plugin>
230250
</plugins>
231251
</pluginManagement>
232252
</build>

0 commit comments

Comments
 (0)