|
48 | 48 | <lombok.version>1.18.16</lombok.version> |
49 | 49 | <main.class>hm.binkley.math.MainKt</main.class> |
50 | 50 | <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> |
| 51 | + <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> |
51 | 52 | <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> |
52 | 53 | <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> |
53 | 54 | <maven-project-info-reports-plugin.version>3.1.1</maven-project-info-reports-plugin.version> |
54 | 55 | <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version> |
55 | 56 | <maven-site-plugin.version>3.9.1</maven-site-plugin.version> |
56 | 57 | <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
57 | 58 | <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version> |
58 | | - <maven-versions-plugin.version>2.8.1</maven-versions-plugin.version> |
59 | 59 | <pitest-junit5-plugin.version>0.12</pitest-junit5-plugin.version> |
60 | 60 | <pitest-maven.version>1.5.2</pitest-maven.version> |
61 | 61 | <project.build.sourceEncoding>${java.charset}</project.build.sourceEncoding> |
62 | 62 | <project.reporting.outputEncoding>${java.charset}</project.reporting.outputEncoding> |
| 63 | + <versions-maven-plugin.version>2.8.1</versions-maven-plugin.version> |
63 | 64 | <!-- @formatter:on --> |
64 | 65 | </properties> |
65 | 66 |
|
|
138 | 139 | <plugin> |
139 | 140 | <groupId>org.codehaus.mojo</groupId> |
140 | 141 | <artifactId>versions-maven-plugin</artifactId> |
141 | | - <version>${maven-versions-plugin.version}</version> |
| 142 | + <version>${versions-maven-plugin.version}</version> |
142 | 143 | </plugin> |
143 | 144 | <plugin> |
144 | 145 | <artifactId>kotlin-maven-plugin</artifactId> |
|
367 | 368 | </executions> |
368 | 369 | </plugin> |
369 | 370 | <plugin> |
370 | | - <artifactId>maven-release-plugin</artifactId> |
371 | | - <version>${maven-release-plugin.version}</version> |
| 371 | + <artifactId>maven-site-plugin</artifactId> |
| 372 | + <version>${maven-site-plugin.version}</version> |
372 | 373 | </plugin> |
373 | 374 | </plugins> |
374 | 375 |
|
|
394 | 395 | <reporting> |
395 | 396 | <plugins> |
396 | 397 | <plugin> |
397 | | - <groupId>com.github.gantsign.maven</groupId> |
398 | | - <artifactId>ktlint-maven-plugin</artifactId> |
399 | | - <version>${ktlint-maven-plugin.version}</version> |
| 398 | + <groupId>org.apache.maven.plugins</groupId> |
| 399 | + <artifactId>maven-dependency-plugin</artifactId> |
| 400 | + <version>${maven-dependency-plugin.version}</version> |
400 | 401 | </plugin> |
401 | 402 | <plugin> |
402 | | - <groupId>org.pitest</groupId> |
403 | | - <artifactId>pitest-maven</artifactId> |
404 | | - <version>${pitest-maven.version}</version> |
| 403 | + <groupId>org.owasp</groupId> |
| 404 | + <artifactId>dependency-check-maven</artifactId> |
| 405 | + <version>${dependency-check-maven.version}</version> |
| 406 | + <configuration> |
| 407 | + <name>Dependency Check Report</name> |
| 408 | + </configuration> |
| 409 | + </plugin> |
| 410 | + <plugin> |
| 411 | + <groupId>org.codehaus.mojo</groupId> |
| 412 | + <artifactId>versions-maven-plugin</artifactId> |
| 413 | + <version>${versions-maven-plugin.version}</version> |
| 414 | + <reportSets> |
| 415 | + <reportSet> |
| 416 | + <reports> |
| 417 | + <report>dependency-updates-report</report> |
| 418 | + <report>plugin-updates-report</report> |
| 419 | + </reports> |
| 420 | + </reportSet> |
| 421 | + </reportSets> |
| 422 | + </plugin> |
| 423 | + <plugin> |
| 424 | + <groupId>org.apache.maven.plugins</groupId> |
| 425 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 426 | + <version>${maven-project-info-reports-plugin.version} |
| 427 | + </version> |
| 428 | + </plugin> |
| 429 | + <plugin> |
| 430 | + <groupId>org.jacoco</groupId> |
| 431 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 432 | + <version>${jacoco-maven-plugin.version}</version> |
405 | 433 | <reportSets> |
406 | 434 | <reportSet> |
407 | 435 | <reports> |
| 436 | + <!-- Must specify to avoid aggregate report --> |
408 | 437 | <report>report</report> |
409 | 438 | </reports> |
410 | 439 | </reportSet> |
411 | 440 | </reportSets> |
412 | 441 | </plugin> |
| 442 | + <plugin> |
| 443 | + <groupId>com.github.gantsign.maven</groupId> |
| 444 | + <artifactId>ktlint-maven-plugin</artifactId> |
| 445 | + <version>${ktlint-maven-plugin.version}</version> |
| 446 | + </plugin> |
| 447 | + <plugin> |
| 448 | + <groupId>org.apache.maven.plugins</groupId> |
| 449 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 450 | + <version>${maven-surefire-plugin.version}</version> |
| 451 | + </plugin> |
| 452 | + <plugin> |
| 453 | + <groupId>org.pitest</groupId> |
| 454 | + <artifactId>pitest-maven</artifactId> |
| 455 | + <version>${pitest-maven.version}</version> |
| 456 | + </plugin> |
413 | 457 | </plugins> |
414 | 458 | </reporting> |
415 | 459 |
|
|
0 commit comments