Skip to content

Commit 4daff6d

Browse files
dependency updates
1 parent 496485c commit 4daff6d

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<dependency-check-maven.version>12.1.8</dependency-check-maven.version>
4242
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
4343
<spotbugs-maven-plugin.version>4.9.8.1</spotbugs-maven-plugin.version>
44+
<findsecbugs-plugin.version>1.13.0</findsecbugs-plugin.version>
4445
</properties>
4546

4647
<repositories>
@@ -153,10 +154,9 @@
153154
<version>${dependency-check-maven.version}</version>
154155
<executions>
155156
<execution>
157+
<phase>package</phase>
156158
<goals>
157-
<!--
158159
<goal>check</goal>
159-
-->
160160
</goals>
161161
</execution>
162162
</executions>
@@ -184,13 +184,21 @@
184184
<groupId>com.github.spotbugs</groupId>
185185
<artifactId>spotbugs-maven-plugin</artifactId>
186186
<version>${spotbugs-maven-plugin.version}</version>
187+
<dependencies>
188+
<dependency>
189+
<groupId>com.h3xstream.findsecbugs</groupId>
190+
<artifactId>findsecbugs-plugin</artifactId>
191+
<version>${findsecbugs-plugin.version}</version>
192+
</dependency>
193+
</dependencies>
187194
<configuration>
188195
<effort>Max</effort>
189196
<threshold>High</threshold>
190197
<xmlOutput>false</xmlOutput>
191198
</configuration>
192199
<executions>
193200
<execution>
201+
<phase>package</phase>
194202
<goals>
195203
<goal>check</goal>
196204
</goals>

0 commit comments

Comments
 (0)