Skip to content

Commit

Permalink
jpmorganchase#110 Added the spotbugs and findsecbugs plugin to the pa…
Browse files Browse the repository at this point in the history
…rent pom
  • Loading branch information
jimbethancourt committed Jun 14, 2020
1 parent 526a479 commit 70c6c04
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,43 @@
<password>${GITHUB_TOKEN}</password>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.0.0</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>4.0.3</version>
</dependency>
</dependencies>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<failOnError>true</failOnError>
<!--<includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
<excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>-->
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-plugin</artifactId>
<version>1.10.1</version>
</plugin>
</plugins>
</configuration>
<!-- Uncomment the executions declaration below
to fail the build when violations are found-->
<!--
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
-->
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 70c6c04

Please sign in to comment.