|
225 | 225 | <plugin> |
226 | 226 | <groupId>org.apache.maven.plugins</groupId> |
227 | 227 | <artifactId>maven-javadoc-plugin</artifactId> |
228 | | - <version>3.6.3</version> |
| 228 | + <version>3.11.2</version> |
229 | 229 | <executions> |
230 | 230 | <execution> |
231 | 231 | <id>attach-javadocs</id> |
|
234 | 234 | </goals> |
235 | 235 | </execution> |
236 | 236 | </executions> |
| 237 | + <dependencies> |
| 238 | + <dependency> |
| 239 | + <groupId>org.apache.maven.wagon</groupId> |
| 240 | + <artifactId>wagon-provider-api</artifactId> |
| 241 | + <version>3.3.3</version> |
| 242 | + </dependency> |
| 243 | + </dependencies> |
237 | 244 | </plugin> |
238 | 245 | <plugin> |
239 | 246 | <groupId>org.apache.maven.plugins</groupId> |
|
257 | 264 | </plugin> |
258 | 265 | <plugin> |
259 | 266 | <artifactId>maven-checkstyle-plugin</artifactId> |
260 | | - <version>3.0.0</version> |
| 267 | + <version>3.6.0</version> |
| 268 | + <dependencies> |
| 269 | + <dependency> |
| 270 | + <groupId>com.puppycrawl.tools</groupId> |
| 271 | + <artifactId>checkstyle</artifactId> |
| 272 | + <version>10.21.1</version> |
| 273 | + </dependency> |
| 274 | + </dependencies> |
261 | 275 | </plugin> |
262 | 276 | <plugin> |
263 | 277 | <groupId>org.codehaus.mojo</groupId> |
|
272 | 286 | <plugin> |
273 | 287 | <groupId>org.codehaus.mojo</groupId> |
274 | 288 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
275 | | - <version>1.22</version> |
| 289 | + <version>1.24</version> |
276 | 290 | </plugin> |
277 | 291 | <plugin> |
278 | 292 | <groupId>org.apache.maven.plugins</groupId> |
279 | 293 | <artifactId>maven-project-info-reports-plugin</artifactId> |
280 | | - <version>3.5.0</version> |
| 294 | + <version>3.8.0</version> |
| 295 | + <dependencies> |
| 296 | + <dependency> |
| 297 | + <groupId>org.sonatype.plexus</groupId> |
| 298 | + <artifactId>plexus-sec-dispatcher</artifactId> |
| 299 | + <version>1.4</version> |
| 300 | + </dependency> |
| 301 | + </dependencies> |
281 | 302 | </plugin> |
282 | 303 | <plugin> |
283 | 304 | <groupId>org.apache.maven.plugins</groupId> |
284 | 305 | <artifactId>maven-site-plugin</artifactId> |
285 | | - <version>3.12.1</version> |
| 306 | + <version>3.21.1</version> |
286 | 307 | </plugin> |
287 | 308 | <plugin> |
288 | 309 | <groupId>org.apache.maven.plugins</groupId> |
|
364 | 385 | </execution> |
365 | 386 | </executions> |
366 | 387 | </plugin> |
367 | | - <plugin> |
368 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
369 | | - <configuration> |
370 | | - <configLocation>checkstyle.xml</configLocation> |
371 | | - <consoleOutput>true</consoleOutput> |
372 | | - <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> |
373 | | - </configuration> |
374 | | - <executions> |
375 | | - <execution> |
376 | | - <goals> |
377 | | - <goal>check</goal> |
378 | | - </goals> |
379 | | - </execution> |
380 | | - </executions> |
381 | | - </plugin> |
382 | 388 | <plugin> |
383 | 389 | <groupId>org.codehaus.mojo</groupId> |
384 | 390 | <artifactId>findbugs-maven-plugin</artifactId> |
|
441 | 447 | <phase>package</phase> |
442 | 448 | </execution> |
443 | 449 | </executions> |
| 450 | + <configuration> |
| 451 | + <!-- Helpful to see Airlock dependency resolutions --> |
| 452 | + <skip>${mpir.skip}</skip> |
| 453 | + </configuration> |
444 | 454 | </plugin> |
445 | 455 | <plugin> |
446 | 456 | <groupId>com.coveo</groupId> |
|
487 | 497 | <project.datanucleus-maven-plugin.version>5.2.1</project.datanucleus-maven-plugin.version> |
488 | 498 | <project.servlet-api.version>2.5</project.servlet-api.version> |
489 | 499 | <deploy.autorelease>false</deploy.autorelease> |
| 500 | + <mpir.skip>false</mpir.skip> |
490 | 501 | </properties> |
491 | 502 |
|
492 | 503 | <profiles> |
| 504 | + <profile> |
| 505 | + <id>checkstyle</id> |
| 506 | + <activation> |
| 507 | + <!-- Checkstyle plugin's dependency now requires Java 11 or higher --> |
| 508 | + <jdk>[11,)</jdk> |
| 509 | + </activation> |
| 510 | + <build> |
| 511 | + <plugins> |
| 512 | + <plugin> |
| 513 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 514 | + <configuration> |
| 515 | + <configLocation>checkstyle.xml</configLocation> |
| 516 | + <consoleOutput>true</consoleOutput> |
| 517 | + <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> |
| 518 | + </configuration> |
| 519 | + <executions> |
| 520 | + <execution> |
| 521 | + <goals> |
| 522 | + <goal>check</goal> |
| 523 | + </goals> |
| 524 | + </execution> |
| 525 | + </executions> |
| 526 | + </plugin> |
| 527 | + </plugins> |
| 528 | + </build> |
| 529 | + </profile> |
493 | 530 | <profile> |
494 | 531 | <id>release-sign-artifacts</id> |
495 | 532 | <activation> |
|
542 | 579 | <plugin> |
543 | 580 | <groupId>org.apache.maven.plugins</groupId> |
544 | 581 | <artifactId>maven-javadoc-plugin</artifactId> |
545 | | - <version>3.6.3</version> |
546 | 582 | <configuration> |
547 | 583 | <doclet>com.microsoft.doclet.DocFxDoclet</doclet> |
548 | 584 | <useStandardDocletOptions>false</useStandardDocletOptions> |
|
0 commit comments