|
76 | 76 | <maven.compiler.source>1.8</maven.compiler.source>
|
77 | 77 | <maven.compiler.target>1.8</maven.compiler.target>
|
78 | 78 |
|
79 |
| - <junit.version>5.11.3</junit.version> |
| 79 | + <junit.version>5.12.0</junit.version> |
80 | 80 | </properties>
|
81 | 81 |
|
82 | 82 | <dependencyManagement>
|
83 | 83 | <dependencies>
|
84 | 84 | <dependency>
|
85 | 85 | <groupId>org.jetbrains</groupId>
|
86 | 86 | <artifactId>annotations</artifactId>
|
87 |
| - <version>26.0.1</version> |
| 87 | + <version>26.0.2</version> |
88 | 88 | <scope>provided</scope>
|
| 89 | + <!-- set to provided so they don't get bundled into the jar (not needed at runtime) --> |
| 90 | + <optional>true</optional> |
89 | 91 | </dependency>
|
90 | 92 |
|
91 | 93 | <dependency>
|
|
136 | 138 | <plugin>
|
137 | 139 | <groupId>org.apache.maven.plugins</groupId>
|
138 | 140 | <artifactId>maven-javadoc-plugin</artifactId>
|
139 |
| - <version>3.11.1</version> |
| 141 | + <version>3.11.2</version> |
140 | 142 | </plugin>
|
141 | 143 | <plugin>
|
142 | 144 | <groupId>org.apache.maven.plugins</groupId>
|
|
166 | 168 | <plugin>
|
167 | 169 | <groupId>org.owasp</groupId>
|
168 | 170 | <artifactId>dependency-check-maven</artifactId>
|
169 |
| - <version>11.1.0</version> |
| 171 | + <version>12.1.0</version> |
| 172 | + <configuration> |
| 173 | + <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> |
| 174 | + </configuration> |
170 | 175 | </plugin>
|
171 | 176 | </plugins>
|
172 | 177 | </pluginManagement>
|
|
202 | 207 | </executions>
|
203 | 208 | </plugin>
|
204 | 209 |
|
205 |
| - <plugin> |
206 |
| - <groupId>org.owasp</groupId> |
207 |
| - <artifactId>dependency-check-maven</artifactId> |
208 |
| - <executions> |
209 |
| - <execution> |
210 |
| - <goals> |
211 |
| - <goal>check</goal> |
212 |
| - </goals> |
213 |
| - <configuration> |
214 |
| - <failBuildOnCVSS>10</failBuildOnCVSS> |
215 |
| - <skipTestScope>true</skipTestScope> |
216 |
| - </configuration> |
217 |
| - </execution> |
218 |
| - </executions> |
219 |
| - </plugin> |
220 |
| - |
221 | 210 | <!-- Run 'mvn license:license-list' to show licenses -->
|
222 | 211 | <plugin>
|
223 | 212 | <groupId>org.codehaus.mojo</groupId>
|
|
356 | 345 | </archive>
|
357 | 346 | </configuration>
|
358 | 347 | </plugin>
|
| 348 | + <plugin> |
| 349 | + <groupId>org.owasp</groupId> |
| 350 | + <artifactId>dependency-check-maven</artifactId> |
| 351 | + <!-- dependency-check now requires JDK11+ --> |
| 352 | + <configuration> |
| 353 | + <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> |
| 354 | + </configuration> |
| 355 | + <executions> |
| 356 | + <execution> |
| 357 | + <goals> |
| 358 | + <goal>check</goal> |
| 359 | + </goals> |
| 360 | + <configuration> |
| 361 | + <failBuildOnCVSS>9</failBuildOnCVSS> |
| 362 | + <skipTestScope>true</skipTestScope> |
| 363 | + </configuration> |
| 364 | + </execution> |
| 365 | + </executions> |
| 366 | + </plugin> |
359 | 367 | </plugins>
|
360 | 368 | </build>
|
361 | 369 | </profile>
|
|
0 commit comments