Skip to content

Commit 0084979

Browse files
committed
Add findbugs maven plugin
1 parent 135cfe5 commit 0084979

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,25 @@
373373
<groupId>org.apache.maven.plugins</groupId>
374374
<artifactId>maven-source-plugin</artifactId>
375375
</plugin>
376+
<plugin>
377+
<groupId>org.codehaus.mojo</groupId>
378+
<artifactId>findbugs-maven-plugin</artifactId>
379+
<version>3.0.2</version>
380+
<configuration>
381+
<effort>Max</effort>
382+
<threshold>Low</threshold>
383+
<xmlOutput>true</xmlOutput>
384+
<!-- until all will be fixed -->
385+
<failOnError>false</failOnError>
386+
</configuration>
387+
<executions>
388+
<execution>
389+
<goals>
390+
<goal>check</goal>
391+
</goals>
392+
</execution>
393+
</executions>
394+
</plugin>
376395
</plugins>
377396
</build>
378397

0 commit comments

Comments
 (0)