|
81 | 81 |
|
82 | 82 | <properties>
|
83 | 83 | <jacoco.minCoverage>0.7</jacoco.minCoverage>
|
84 |
| - <dependencyCheck.version>7.1.0</dependencyCheck.version> |
| 84 | + <dependencyCheck.version>7.3.0</dependencyCheck.version> |
85 | 85 | <jackson.version>2.13.4</jackson.version>
|
86 | 86 | <slf4j.version>2.0.2</slf4j.version>
|
87 | 87 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
178 | 178 | <plugin>
|
179 | 179 | <groupId>com.github.spotbugs</groupId>
|
180 | 180 | <artifactId>spotbugs-maven-plugin</artifactId>
|
181 |
| - <version>4.2.0</version> |
| 181 | + <version>4.7.3.0</version> |
182 | 182 | <configuration>
|
183 | 183 | <!--
|
184 | 184 | Enables analysis which takes more memory but finds more bugs.
|
|
188 | 188 | <effort>Max</effort>
|
189 | 189 | <!-- Reports all bugs (other values are medium and max) -->
|
190 | 190 | <threshold>Low</threshold>
|
| 191 | + <!-- Only fail the build if high confidence bugs are found --> |
| 192 | + <failThreshold>High</failThreshold> |
191 | 193 | <!-- Produces XML report -->
|
192 | 194 | <xmlOutput>true</xmlOutput>
|
193 | 195 | <!-- Configures the directory in which the XML report is created -->
|
194 | 196 | <spotbugsXmlOutputDirectory>${project.build.directory}/spotbugs</spotbugsXmlOutputDirectory>
|
195 |
| - |
| 197 | + <excludeFilterFile>${session.executionRootDirectory}/spotbugs-excludeFilter.xml</excludeFilterFile> |
196 | 198 | <plugins>
|
197 | 199 | <plugin>
|
198 | 200 | <groupId>com.h3xstream.findsecbugs</groupId>
|
199 | 201 | <artifactId>findsecbugs-plugin</artifactId>
|
200 |
| - <version>1.7.1</version> |
| 202 | + <version>1.12.0</version> |
201 | 203 | </plugin>
|
202 | 204 | </plugins>
|
203 | 205 | </configuration>
|
204 | 206 | </plugin>
|
| 207 | + <plugin> |
| 208 | + <groupId>org.jacoco</groupId> |
| 209 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 210 | + <version>0.8.8</version> |
| 211 | + </plugin> |
205 | 212 | </plugins>
|
206 | 213 | </pluginManagement>
|
207 | 214 | </build>
|
|
0 commit comments