Skip to content

Commit bf1134b

Browse files
committed
Support maven-findbugs-plugin
FindBugs is a static analyser to look for bugs in Java code. This change enable mspgack-java to analyse potential bugs by using FindBugs. To use findbugs, please type $ mvn findbugs:findbugs Signed-off-by: Tsuyoshi Ozawa <ozawa.tsuyoshi@gmail.com>
1 parent dd3ed07 commit bf1134b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,15 @@
139139
<argLine>-Xmx512M</argLine>
140140
</configuration>
141141
</plugin>
142+
<plugin>
143+
<groupId>org.codehaus.mojo</groupId>
144+
<artifactId>findbugs-maven-plugin</artifactId>
145+
<configuration>
146+
<findbugsXmlOutput>true</findbugsXmlOutput>
147+
<xmlOutput>true</xmlOutput>
148+
<effort>Max</effort>
149+
</configuration>
150+
</plugin>
142151
</plugins>
143152
</build>
144153

0 commit comments

Comments
 (0)