diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2018-10-09 10:11:25 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2018-10-09 10:11:25 +0900 |
commit | 7eb34c175cf4a1e554ae2a72803bd95e21ae1505 (patch) | |
tree | 79049e0e9c6ac349d9802a896c96742bbbdeb2da | |
parent | 8223a7e6463fa530602e6c967343c2536ce9aae6 (diff) | |
download | jgit-7eb34c175cf4a1e554ae2a72803bd95e21ae1505.tar.gz jgit-7eb34c175cf4a1e554ae2a72803bd95e21ae1505.zip |
Replace FindBugs with SpotBugs
SpotBugs [1] is the spiritual successor of FindBugs, carrying on from
the point where it left off with support of its community.
This is a backport of [1] which originally did the replacement on the
master branch. This change updates to the current latest version, so
that we can get the benefit of its checks when pushing changes to the
stable branches.
[1] https://spotbugs.github.io/
[2] https://git.eclipse.org/r/#/c/101312/
Change-Id: Ib73d56b5980b55f4d7e09d87abec3138cac3d3dc
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
-rw-r--r-- | pom.xml | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -210,6 +210,7 @@ <maven-javadoc-plugin-version>2.10.3</maven-javadoc-plugin-version> <tycho-extras-version>0.25.0</tycho-extras-version> <gson-version>2.2.4</gson-version> + <spotbugs-maven-plugin-version>3.1.6</spotbugs-maven-plugin-version> <!-- Properties to enable jacoco code coverage analysis --> <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> @@ -323,9 +324,9 @@ </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>3.0.3</version> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <version>${spotbugs-maven-plugin-version}</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <failOnError>false</failOnError> @@ -528,9 +529,9 @@ <version>2.5</version> </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>3.0.3</version> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <version>${spotbugs-maven-plugin-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -706,8 +707,8 @@ <build> <plugins> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> |