|
279 | 279 | <filtering>true</filtering> |
280 | 280 | </testResource> |
281 | 281 | </testResources> |
| 282 | + |
282 | 283 | <pluginManagement> |
283 | 284 | <plugins> |
| 285 | + <plugin> |
| 286 | + <groupId>org.jacoco</groupId> |
| 287 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 288 | + <version>0.8.14</version> |
| 289 | + </plugin> |
284 | 290 | <plugin> |
285 | 291 | <groupId>org.apache.maven.plugins</groupId> |
286 | 292 | <artifactId>maven-jar-plugin</artifactId> |
|
307 | 313 | <version>0.10.0</version> |
308 | 314 | <extensions>true</extensions> |
309 | 315 | </plugin> |
| 316 | + <plugin> |
| 317 | + <groupId>org.apache.maven.plugins</groupId> |
| 318 | + <artifactId>maven-site-plugin</artifactId> |
| 319 | + <version>3.21.0</version> |
| 320 | + </plugin> |
| 321 | + <plugin> |
| 322 | + <groupId>org.apache.maven.plugins</groupId> |
| 323 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 324 | + <version>3.5.4</version> |
| 325 | + </plugin> |
| 326 | + <plugin> |
| 327 | + <groupId>org.apache.maven.plugins</groupId> |
| 328 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 329 | + <version>3.9.0</version> |
| 330 | + <configuration> |
| 331 | + <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <!-- TODO(AR) disabled due to slow `mvn site` build times --> |
| 332 | + </configuration> |
| 333 | + </plugin> |
| 334 | + |
310 | 335 | </plugins> |
311 | 336 | </pluginManagement> |
312 | 337 |
|
|
473 | 498 | </executions> |
474 | 499 | </plugin> |
475 | 500 |
|
| 501 | + <plugin> |
| 502 | + <groupId>org.jacoco</groupId> |
| 503 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 504 | + <configuration> |
| 505 | + <propertyName>jacocoArgLine</propertyName> |
| 506 | + </configuration> |
| 507 | + <executions> |
| 508 | + <execution> |
| 509 | + <id>default-prepare-agent</id> |
| 510 | + <goals> |
| 511 | + <goal>prepare-agent</goal> |
| 512 | + </goals> |
| 513 | + </execution> |
| 514 | + </executions> |
| 515 | + </plugin> |
| 516 | + |
| 517 | + <plugin> |
| 518 | + <groupId>org.apache.maven.plugins</groupId> |
| 519 | + <artifactId>maven-surefire-plugin</artifactId> |
| 520 | + <version>3.5.4</version> |
| 521 | + <configuration> |
| 522 | + <argLine>@{jacocoArgLine}</argLine> |
| 523 | + </configuration> |
| 524 | + </plugin> |
| 525 | + |
476 | 526 | <!-- Maven Jar plugin --> |
477 | 527 | <plugin> |
478 | 528 | <groupId>org.apache.maven.plugins</groupId> |
|
508 | 558 | <releaseProfiles>bbl-validator-release</releaseProfiles> |
509 | 559 | </configuration> |
510 | 560 | </plugin> |
| 561 | + |
511 | 562 | </plugins> |
512 | 563 | </build> |
513 | 564 |
|
| 565 | + <reporting> |
| 566 | + <plugins> |
| 567 | + <plugin> |
| 568 | + <groupId>org.jacoco</groupId> |
| 569 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 570 | + <reportSets> |
| 571 | + <reportSet> |
| 572 | + <reports> |
| 573 | + <report>report</report> |
| 574 | + </reports> |
| 575 | + </reportSet> |
| 576 | + </reportSets> |
| 577 | + </plugin> |
| 578 | + </plugins> |
| 579 | + </reporting> |
| 580 | + |
514 | 581 | <profiles> |
515 | 582 | <profile> |
516 | 583 | <id>bbl-validator-release</id> |
|
0 commit comments