|
399 | 399 | </plugins>
|
400 | 400 | </configuration>
|
401 | 401 | </plugin>
|
402 |
| - <plugin> |
403 |
| - <groupId>org.codehaus.mojo</groupId> |
404 |
| - <artifactId>clirr-maven-plugin</artifactId> |
405 |
| - <configuration> |
406 |
| - <comparisonVersion>1.19.0</comparisonVersion> |
407 |
| - <ignoredDifferencesFile>${basedir}/../clirr-ignored-differences.xml</ignoredDifferencesFile> |
408 |
| - <logResults>true</logResults> |
409 |
| - </configuration> |
410 |
| - <executions> |
411 |
| - <execution> |
412 |
| - <goals> |
413 |
| - <goal>check</goal> |
414 |
| - </goals> |
415 |
| - </execution> |
416 |
| - </executions> |
417 |
| - </plugin> |
418 |
| - <plugin> |
419 |
| - <groupId>org.codehaus.mojo</groupId> |
420 |
| - <artifactId>animal-sniffer-maven-plugin</artifactId> |
421 |
| - <configuration> |
422 |
| - <signature> |
423 |
| - <groupId>org.codehaus.mojo.signature</groupId> |
424 |
| - <artifactId>java17</artifactId> |
425 |
| - <version>1.0</version> |
426 |
| - </signature> |
427 |
| - <ignores> |
428 |
| - <ignore>com.sun.net.httpserver.*</ignore> |
429 |
| - </ignores> |
430 |
| - </configuration> |
431 |
| - <executions> |
432 |
| - <execution> |
433 |
| - <goals> |
434 |
| - <goal>check</goal> |
435 |
| - </goals> |
436 |
| - </execution> |
437 |
| - </executions> |
438 |
| - </plugin> |
439 | 402 | <!-- Build the dependencies report at package time (needed for the assembly artifact). -->
|
440 | 403 | <plugin>
|
441 | 404 | <artifactId>maven-project-info-reports-plugin</artifactId>
|
|
661 | 624 | </snapshotRepository>
|
662 | 625 | </distributionManagement>
|
663 | 626 | </profile>
|
| 627 | + <profile> |
| 628 | + <id>clirr-compatibility-check</id> |
| 629 | + <!-- |
| 630 | + CLIRR Maven plugin's dependencies are quite old and not available |
| 631 | + in some build environment (Airlock). |
| 632 | + https://github.com/googleapis/java-shared-config/issues/956 |
| 633 | + Extracting this plugin declaration as a profile enables us to disable |
| 634 | + the CLIRR dependency resolution by `mvn -P=-clirr-compatibility-check ...` |
| 635 | + --> |
| 636 | + <activation> |
| 637 | + <!-- The compatibility check runs by default in CIs --> |
| 638 | + <jdk>[1.8,)</jdk> |
| 639 | + </activation> |
| 640 | + <build> |
| 641 | + <plugins> |
| 642 | + <plugin> |
| 643 | + <groupId>org.codehaus.mojo</groupId> |
| 644 | + <artifactId>clirr-maven-plugin</artifactId> |
| 645 | + <configuration> |
| 646 | + <comparisonVersion>1.19.0</comparisonVersion> |
| 647 | + <ignoredDifferencesFile>${basedir}/../clirr-ignored-differences.xml</ignoredDifferencesFile> |
| 648 | + <logResults>true</logResults> |
| 649 | + </configuration> |
| 650 | + <executions> |
| 651 | + <execution> |
| 652 | + <goals> |
| 653 | + <goal>check</goal> |
| 654 | + </goals> |
| 655 | + </execution> |
| 656 | + </executions> |
| 657 | + </plugin> |
| 658 | + </plugins> |
| 659 | + </build> |
| 660 | + </profile> |
| 661 | + <profile> |
| 662 | + <id>animal-sniffer</id> |
| 663 | + <activation> |
| 664 | + <!-- The compatibility check runs by default in CIs --> |
| 665 | + <jdk>[1.8,)</jdk> |
| 666 | + </activation> |
| 667 | + <build> |
| 668 | + <plugins> |
| 669 | + <plugin> |
| 670 | + <groupId>org.codehaus.mojo</groupId> |
| 671 | + <artifactId>animal-sniffer-maven-plugin</artifactId> |
| 672 | + <configuration> |
| 673 | + <signature> |
| 674 | + <groupId>org.codehaus.mojo.signature</groupId> |
| 675 | + <!--Set minimum version to Java 7--> |
| 676 | + <artifactId>java17</artifactId> |
| 677 | + <version>1.0</version> |
| 678 | + </signature> |
| 679 | + <ignores> |
| 680 | + <ignore>com.sun.net.httpserver.*</ignore> |
| 681 | + </ignores> |
| 682 | + </configuration> |
| 683 | + <executions> |
| 684 | + <execution> |
| 685 | + <goals> |
| 686 | + <goal>check</goal> |
| 687 | + </goals> |
| 688 | + </execution> |
| 689 | + </executions> |
| 690 | + </plugin> |
| 691 | + </plugins> |
| 692 | + </build> |
| 693 | + </profile> |
664 | 694 | </profiles>
|
665 | 695 | </project>
|
0 commit comments