Skip to content

Commit 7f25f4d

Browse files
committed
replace findbugs (deprecated) report plugin with spotbugs
1 parent a1a1b2c commit 7f25f4d

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

html-types/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
<reporting>
7575
<plugins>
7676
<plugin>
77-
<groupId>org.codehaus.mojo</groupId>
78-
<artifactId>findbugs-maven-plugin</artifactId>
79-
<version>3.0.2</version>
77+
<groupId>com.github.spotbugs</groupId>
78+
<artifactId>spotbugs-maven-plugin</artifactId>
79+
<version>3.1.12.2</version>
8080
<configuration>
8181
<effort>Max</effort>
8282
<threshold>Low</threshold>

parent/pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,10 @@ application while protecting against XSS.
6767

6868
<reporting>
6969
<plugins>
70-
<!-- `mvn compile site` will generate target/site/findbugs.html -->
71-
<!-- http://gleclaire.github.io/findbugs-maven-plugin/dependency-info.html -->
7270
<plugin>
73-
<groupId>org.codehaus.mojo</groupId>
74-
<artifactId>findbugs-maven-plugin</artifactId>
75-
<version>3.0.2</version>
71+
<groupId>com.github.spotbugs</groupId>
72+
<artifactId>spotbugs-maven-plugin</artifactId>
73+
<version>3.1.12.2</version>
7674
<configuration>
7775
<!--
7876
Enables analysis which takes more memory but finds more bugs.
@@ -194,6 +192,11 @@ application while protecting against XSS.
194192
<artifactId>maven-deploy-plugin</artifactId>
195193
<version>2.8.2</version>
196194
</plugin>
195+
<plugin>
196+
<groupId>org.apache.maven.plugins</groupId>
197+
<artifactId>maven-project-info-reports-plugin</artifactId>
198+
<version>2.9</version>
199+
</plugin>
197200
<plugin>
198201
<groupId>org.jacoco</groupId>
199202
<artifactId>jacoco-maven-plugin</artifactId>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@
118118
<!-- `mvn compile site` will generate target/site/findbugs.html -->
119119
<!-- http://gleclaire.github.io/findbugs-maven-plugin/dependency-info.html -->
120120
<plugin>
121-
<groupId>org.codehaus.mojo</groupId>
122-
<artifactId>findbugs-maven-plugin</artifactId>
123-
<version>3.0.2</version>
121+
<groupId>com.github.spotbugs</groupId>
122+
<artifactId>spotbugs-maven-plugin</artifactId>
123+
<version>3.1.12.2</version>
124124
<configuration>
125125
<!--
126126
Enables analysis which takes more memory but finds more bugs.

0 commit comments

Comments
 (0)