|
@@ -113,6 +113,8 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
|
|
|
<maven-checkstyle-plugin.version>3.1.0</maven-checkstyle-plugin.version>
|
|
|
<checkstyle.version>8.29</checkstyle.version>
|
|
|
<dependency-check-maven.version>1.4.3</dependency-check-maven.version>
|
|
|
+ <spotbugs.version>4.2.2</spotbugs.version>
|
|
|
+ <spotbugs-maven-plugin.version>4.2.0</spotbugs-maven-plugin.version>
|
|
|
|
|
|
<shell-executable>bash</shell-executable>
|
|
|
|
|
@@ -342,6 +344,18 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
|
|
|
<artifactId>dependency-check-maven</artifactId>
|
|
|
<version>${dependency-check-maven.version}</version>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.github.spotbugs</groupId>
|
|
|
+ <artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
+ <version>${spotbugs-maven-plugin.version}</version>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.spotbugs</groupId>
|
|
|
+ <artifactId>spotbugs</artifactId>
|
|
|
+ <version>${spotbugs.version}</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
|
|
@@ -443,6 +457,10 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
|
|
|
<artifactId>dependency-check-maven</artifactId>
|
|
|
<version>${dependency-check-maven.version}</version>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.github.spotbugs</groupId>
|
|
|
+ <artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|