pom.xml: remove the findbugs plugin
Replaced by Huntbugs
This commit is contained in:
parent
3c1f06534b
commit
bff18a5b8f
2 changed files with 6 additions and 30 deletions
12
README.md
12
README.md
|
@ -36,7 +36,7 @@ maven-compiler-plugin.version|3.5.1
|
|||
maven-surefire-plugin.version|2.19.1
|
||||
maven-failsafe-plugin.version|2.19.1
|
||||
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
|
||||
highwheel-maven.version|1.2
|
||||
maven-project-info-reports-plugin.version|2.9
|
||||
|
@ -118,14 +118,12 @@ during the `verify` phase.
|
|||
|
||||
No configuration applied beyond the defaults.
|
||||
|
||||
## Findbugs Maven Plugin
|
||||
## Huntbugs Maven Plugin
|
||||
|
||||
The [Findbugs Maven Plugin](http://gleclaire.github.io/findbugs-maven-plugin/)
|
||||
runs the [Findbugs](http://findbugs.sourceforge.net/factSheet.html) code
|
||||
analysis.
|
||||
The [Huntbugs Maven Plugin](https://github.com/amaembo/huntbugs) is a
|
||||
static code analyser.
|
||||
|
||||
Runs its [check](http://gleclaire.github.io/findbugs-maven-plugin/check-mojo.html)
|
||||
goal during the `verify` phase.
|
||||
Runs during the `compile` phase.
|
||||
|
||||
### Configuration
|
||||
|
||||
|
|
24
pom.xml
24
pom.xml
|
@ -53,7 +53,6 @@
|
|||
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
||||
<maven-failsafe-plugin.version>2.19.1</maven-failsafe-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>
|
||||
<jacoco-maven-plugin.version>0.7.7.201606060606</jacoco-maven-plugin.version>
|
||||
<highwheel-maven.version>1.2</highwheel-maven.version>
|
||||
|
@ -257,28 +256,13 @@
|
|||
</executions>
|
||||
</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>
|
||||
<groupId>one.util</groupId>
|
||||
<artifactId>huntbugs-maven-plugin</artifactId>
|
||||
<version>${huntbugs.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<phase>compile</phase>
|
||||
<goals>
|
||||
<goal>huntbugs</goal>
|
||||
</goals>
|
||||
|
@ -390,12 +374,6 @@
|
|||
<linkXRef>true</linkXRef>
|
||||
</configuration>
|
||||
</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>
|
||||
</reporting>
|
||||
|
||||
|
|
Loading…
Reference in a new issue