We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 135cfe5 commit 0084979Copy full SHA for 0084979
pom.xml
@@ -373,6 +373,25 @@
373
<groupId>org.apache.maven.plugins</groupId>
374
<artifactId>maven-source-plugin</artifactId>
375
</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>
395
</plugins>
396
</build>
397
0 commit comments