pom.xml: remove the findbugs plugin

Replaced by Huntbugs
This commit is contained in:
Paul Campbell 2017-01-18 11:59:27 +00:00
parent 3c1f06534b
commit bff18a5b8f
2 changed files with 6 additions and 30 deletions

View file

@ -36,7 +36,7 @@ maven-compiler-plugin.version|3.5.1
maven-surefire-plugin.version|2.19.1 maven-surefire-plugin.version|2.19.1
maven-failsafe-plugin.version|2.19.1 maven-failsafe-plugin.version|2.19.1
maven-pmd-plugin.version|3.6 maven-pmd-plugin.version|3.6
findbugs-maven-plugin.version|3.0.4 huntbugs.version|0.0.11
jacoco-maven-plugin.version|0.7.7.201606060606 jacoco-maven-plugin.version|0.7.7.201606060606
highwheel-maven.version|1.2 highwheel-maven.version|1.2
maven-project-info-reports-plugin.version|2.9 maven-project-info-reports-plugin.version|2.9
@ -118,14 +118,12 @@ during the `verify` phase.
No configuration applied beyond the defaults. No configuration applied beyond the defaults.
## Findbugs Maven Plugin ## Huntbugs Maven Plugin
The [Findbugs Maven Plugin](http://gleclaire.github.io/findbugs-maven-plugin/) The [Huntbugs Maven Plugin](https://github.com/amaembo/huntbugs) is a
runs the [Findbugs](http://findbugs.sourceforge.net/factSheet.html) code static code analyser.
analysis.
Runs its [check](http://gleclaire.github.io/findbugs-maven-plugin/check-mojo.html) Runs during the `compile` phase.
goal during the `verify` phase.
### Configuration ### Configuration

24
pom.xml
View file

@ -53,7 +53,6 @@
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
<maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version>
<maven-pmd-plugin.version>3.7</maven-pmd-plugin.version> <maven-pmd-plugin.version>3.7</maven-pmd-plugin.version>
<findbugs-maven-plugin.version>3.0.4</findbugs-maven-plugin.version>
<huntbugs.version>0.0.11</huntbugs.version> <huntbugs.version>0.0.11</huntbugs.version>
<jacoco-maven-plugin.version>0.7.7.201606060606</jacoco-maven-plugin.version> <jacoco-maven-plugin.version>0.7.7.201606060606</jacoco-maven-plugin.version>
<highwheel-maven.version>1.2</highwheel-maven.version> <highwheel-maven.version>1.2</highwheel-maven.version>
@ -257,28 +256,13 @@
</executions> </executions>
</plugin><!-- maven-pmd-plugin --> </plugin><!-- maven-pmd-plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
<executions>
<execution>
<id>check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin><!-- findbugs-maven-plugin -->
<plugin> <plugin>
<groupId>one.util</groupId> <groupId>one.util</groupId>
<artifactId>huntbugs-maven-plugin</artifactId> <artifactId>huntbugs-maven-plugin</artifactId>
<version>${huntbugs.version}</version> <version>${huntbugs.version}</version>
<executions> <executions>
<execution> <execution>
<phase>verify</phase> <phase>compile</phase>
<goals> <goals>
<goal>huntbugs</goal> <goal>huntbugs</goal>
</goals> </goals>
@ -390,12 +374,6 @@
<linkXRef>true</linkXRef> <linkXRef>true</linkXRef>
</configuration> </configuration>
</plugin><!-- maven-pmd-plugin --> </plugin><!-- maven-pmd-plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
</plugin><!-- findbugs-maven-plugin -->
</plugins> </plugins>
</reporting> </reporting>