Skip to content

Commit 56daa0b

Browse files
Add spotbugs (#5)
1 parent 531b37c commit 56daa0b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,33 @@
523523
</execution>
524524
</executions>
525525
</plugin>
526+
<plugin>
527+
<groupId>com.github.spotbugs</groupId>
528+
<artifactId>spotbugs-maven-plugin</artifactId>
529+
<version>4.9.4.1</version>
530+
<configuration>
531+
<xmlOutput>true</xmlOutput>
532+
<effort>Max</effort>
533+
<failThreshold>Low</failThreshold>
534+
<failOnError>true</failOnError>
535+
<includeTests>true</includeTests>
536+
<plugins>
537+
<plugin>
538+
<groupId>com.h3xstream.findsecbugs</groupId>
539+
<artifactId>findsecbugs-plugin</artifactId>
540+
<version>1.14.0</version>
541+
</plugin>
542+
</plugins>
543+
</configuration>
544+
<executions>
545+
<execution>
546+
<goals>
547+
<goal>check</goal>
548+
</goals>
549+
<phase>test</phase>
550+
</execution>
551+
</executions>
552+
</plugin>
526553
</plugins>
527554
</build>
528555
<profiles>

0 commit comments

Comments
 (0)