Skip to content

Commit

Permalink
Merge pull request #101 from jenkinsci/72-pr
Browse files Browse the repository at this point in the history
Enable FindBugs in the local build flows.
  • Loading branch information
lanwen committed Oct 27, 2015
2 parents 815f733 + 798377f commit 1ed2edd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -49,6 +49,7 @@
<properties>
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
<maven-release-plugin.version>2.5.1</maven-release-plugin.version>
<findbugs-maven-plugin.version>3.0.2</findbugs-maven-plugin.version>
</properties>

<repositories>
Expand Down Expand Up @@ -252,6 +253,25 @@
</suppressionsLocation>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 1ed2edd

Please sign in to comment.