Skip to content

Commit

Permalink
Fix analysis configuration of SpotBugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Feb 16, 2020
1 parent 34a555f commit 554d64d
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.56</version>
<relativePath />
<relativePath/>
</parent>

<groupId>org.jvnet.hudson.plugins</groupId>
Expand All @@ -15,10 +16,10 @@
<version>2.1.5-SNAPSHOT</version>
<url>https://github.com/jenkinsci/analysis-pom-plugin</url>
<description>This static analysis POM serves as parent POM for all my Jenkins Plugins. It basically enhances the
Parent POM for Jenkins Plugins (see https://github.com/jenkinsci/plugin-pom)
with a predefined configuration of several static analysis tools. Additionally, it provides a fix set of test dependencies that are common
to all my plugins. This POM enforces the Java style guide (see https://github.com/uhafner/codingstyle) that I am using
in these plugins (and in my lectures at the Munich University of Applied Sciences).
Parent POM for Jenkins Plugins (see https://github.com/jenkinsci/plugin-pom) with a predefined configuration of
several static analysis tools. Additionally, it provides a fix set of test dependencies that are common
to all my plugins. This POM enforces the Java style guide (see https://github.com/uhafner/codingstyle) that I am
using in these plugins (and in my lectures at the Munich University of Applied Sciences).
</description>

<properties>
Expand Down Expand Up @@ -264,6 +265,7 @@
<configuration>
<additionalOptions>-Xdoclint:all</additionalOptions>
<failOnWarnings>false</failOnWarnings>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -392,6 +394,10 @@
</goals>
<phase>verify</phase>
</execution>
<execution>
<id>spotbugs</id>
<phase>none</phase>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
Expand Down

0 comments on commit 554d64d

Please sign in to comment.