|
75 | 75 | <plugin> |
76 | 76 | <groupId>org.apache.maven.plugins</groupId> |
77 | 77 | <artifactId>maven-gpg-plugin</artifactId> |
78 | | - <version>3.2.2</version> |
| 78 | + <version>3.2.4</version> |
79 | 79 | <executions> |
80 | 80 | <execution> |
81 | 81 | <id>sign-artifacts</id> |
|
265 | 265 | <plugin> |
266 | 266 | <groupId>com.github.siom79.japicmp</groupId> |
267 | 267 | <artifactId>japicmp-maven-plugin</artifactId> |
268 | | - <version> 0.20.0</version> |
| 268 | + <version>0.20.0</version> |
269 | 269 | <configuration> |
270 | 270 | <newVersion> |
271 | 271 | <file> |
|
528 | 528 | <version>${org.junit.version}</version> |
529 | 529 | <scope>test</scope> |
530 | 530 | </dependency> |
| 531 | + <dependency> |
| 532 | + <groupId>org.assertj</groupId> |
| 533 | + <artifactId>assertj-core</artifactId> |
| 534 | + <version>3.25.3</version> |
| 535 | + <scope>test</scope> |
| 536 | + </dependency> |
| 537 | + <dependency> |
| 538 | + <groupId>org.junit-pioneer</groupId> |
| 539 | + <artifactId>junit-pioneer</artifactId> |
| 540 | + <version>2.2.0</version> |
| 541 | + <scope>test</scope> |
| 542 | + </dependency> |
531 | 543 | <dependency> |
532 | 544 | <groupId>org.mockito</groupId> |
533 | 545 | <artifactId>mockito-core</artifactId> |
|
540 | 552 | <version>${mockito.version}</version> |
541 | 553 | <scope>test</scope> |
542 | 554 | </dependency> |
| 555 | + <dependency> |
| 556 | + <groupId>net.bytebuddy</groupId> |
| 557 | + <artifactId>byte-buddy-agent</artifactId> |
| 558 | + <version>1.14.14</version> |
| 559 | + <scope>test</scope> |
| 560 | + </dependency> |
543 | 561 | <dependency> |
544 | 562 | <groupId>org.slf4j</groupId> |
545 | 563 | <artifactId>slf4j-simple</artifactId> |
|
676 | 694 | <artifactId>maven-surefire-plugin</artifactId> |
677 | 695 | <configuration> |
678 | 696 | <argLine> |
679 | | - ${argLine} --add-opens java.base/sun.net.dns=ALL-UNNAMED |
| 697 | + @{argLine} |
| 698 | + --add-opens java.base/sun.net.dns=ALL-UNNAMED |
| 699 | + --add-opens java.base/sun.net.dns=org.dnsjava |
680 | 700 | </argLine> |
681 | 701 | <additionalClasspathElements> |
682 | 702 | <additionalClasspathElement>${project.build.outputDirectory}/META-INF/versions/11</additionalClasspathElement> |
|
784 | 804 | </executions> |
785 | 805 | </plugin> |
786 | 806 |
|
| 807 | + <plugin> |
| 808 | + <groupId>org.apache.maven.plugins</groupId> |
| 809 | + <artifactId>maven-dependency-plugin</artifactId> |
| 810 | + <version>3.6.1</version> |
| 811 | + <executions> |
| 812 | + <execution> |
| 813 | + <phase>initialize</phase> |
| 814 | + <goals> |
| 815 | + <goal>properties</goal> |
| 816 | + </goals> |
| 817 | + </execution> |
| 818 | + </executions> |
| 819 | + </plugin> |
| 820 | + |
787 | 821 | <plugin> |
788 | 822 | <groupId>org.apache.maven.plugins</groupId> |
789 | 823 | <artifactId>maven-surefire-plugin</artifactId> |
790 | 824 | <configuration> |
791 | 825 | <argLine> |
792 | | - ${argLine} --add-opens java.base/sun.net.dns=ALL-UNNAMED |
| 826 | + @{argLine} |
| 827 | + --add-opens java.base/sun.net.dns=ALL-UNNAMED |
| 828 | + --add-opens java.base/sun.net.dns=org.dnsjava |
| 829 | + -javaagent:${net.bytebuddy:byte-buddy-agent:jar} |
793 | 830 | </argLine> |
794 | 831 | <additionalClasspathElements> |
795 | 832 | <additionalClasspathElement>${project.build.outputDirectory}/META-INF/versions/11</additionalClasspathElement> |
|
0 commit comments