Last active
November 23, 2016 07:28
-
-
Save oleg-nenashev/9be4c1d7a9652513808d to your computer and use it in GitHub Desktop.
Jenkins plugins: FindBugs configuration (see https://groups.google.com/forum/#!searchin/jenkinsci-dev/findbugs/jenkinsci-dev/HxxTICM4LVQ/p7fNQhDDLZMJ)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project ...> | |
... | |
<properties> | |
<findbugs-maven-plugin.version>3.0.1</findbugs-maven-plugin.version> | |
<findbugs.failOnError>false</findbugs.failOnError> | |
</properties> | |
... | |
<dependencies> | |
... | |
<dependency> | |
<groupId>com.google.code.findbugs</groupId> | |
<artifactId>annotations</artifactId> | |
<version>3.0.0</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
... | |
<build> | |
<plugins> | |
... | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>findbugs-maven-plugin</artifactId> | |
<version>${findbugs-maven-plugin.version}</version> | |
<configuration> | |
<xmlOutput>true</xmlOutput> | |
<failOnError>${findbugs.failOnError}</failOnError> | |
</configuration> | |
<executions> | |
<execution> | |
<id>run-findbugs</id> | |
<phase>verify</phase> | |
<goals> | |
<goal>check</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment