Skip to content

Commit

Permalink
Merge pull request #1 from jenkinsci/findbugs
Browse files Browse the repository at this point in the history
Configured FindBugs xml output
  • Loading branch information
rsandell committed Jul 10, 2015
2 parents eadff18 + 9886541 commit 8543116
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1 +1,3 @@
/target/
/target/
.idea
*.iml
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -36,6 +36,26 @@
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<xmlOutput>true</xmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>

<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
Expand Down

0 comments on commit 8543116

Please sign in to comment.