diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2017-07-17 00:31:13 +0200 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2017-07-28 16:15:54 +0100 |
commit | de7698476b44567a0b998a39c61e206b8149d63b (patch) | |
tree | d96166b08e43f44cc5d0b27b8966e7aecbfea4e5 /pom.xml | |
parent | 6f23210781666506bde36b48cf00ffc9506348b0 (diff) | |
download | jgit-de7698476b44567a0b998a39c61e206b8149d63b.tar.gz jgit-de7698476b44567a0b998a39c61e206b8149d63b.zip |
Replace findbugs by spotbugs
SpotBugs [1] is the spiritual successor of FindBugs, carrying on from
the point where it left off with support of its community.
[1] http://spotbugs.readthedocs.io/
Change-Id: I127f2c54b04265b6565e780116617ffa8a4d7eaf
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -212,7 +212,7 @@ <maven-javadoc-plugin-version>2.10.4</maven-javadoc-plugin-version> <tycho-extras-version>1.0.0</tycho-extras-version> <gson-version>2.2.4</gson-version> - <findbugs-maven-plugin-version>3.0.4</findbugs-maven-plugin-version> + <spotbugs-maven-plugin-version>3.0.6</spotbugs-maven-plugin-version> <maven-surefire-report-plugin-version>2.20</maven-surefire-report-plugin-version> <!-- Properties to enable jacoco code coverage analysis --> @@ -371,9 +371,9 @@ </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>${findbugs-maven-plugin-version}</version> + <groupId>com.github.hazendaz.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <version>${spotbugs-maven-plugin-version}</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <failOnError>false</failOnError> @@ -579,9 +579,9 @@ <version>2.5</version> </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>${findbugs-maven-plugin-version}</version> + <groupId>com.github.hazendaz.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <version>${spotbugs-maven-plugin-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -751,8 +751,8 @@ <build> <plugins> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> + <groupId>com.github.hazendaz.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> |