|
77 | 77 | <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
78 | 78 | <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
79 | 79 | <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> |
80 | | - <maven-failsafe-plugin.version>3.5.3</maven-failsafe-plugin.version> |
| 80 | + <maven-failsafe-plugin.version>3.5.2</maven-failsafe-plugin.version> |
81 | 81 | <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> |
82 | 82 | <maven-pmd-plugin.version>3.27.0</maven-pmd-plugin.version> |
83 | 83 | <pmd.version>7.16.0</pmd.version> |
|
87 | 87 | <spotbugs-maven-plugin.version>4.9.4.0</spotbugs-maven-plugin.version> |
88 | 88 | <findsecbugs-plugin.version>1.14.0</findsecbugs-plugin.version> |
89 | 89 | <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> |
90 | | - <maven-pitest-plugin.version>1.20.2</maven-pitest-plugin.version> |
| 90 | + <pitest-maven-plugin.version>1.20.2</pitest-maven-plugin.version> |
91 | 91 | <pitest-junit5-plugin.version>1.2.3</pitest-junit5-plugin.version> |
92 | 92 | <error-prone.version>2.41.0</error-prone.version> |
93 | 93 | <nullaway.version>0.12.9</nullaway.version> |
|
111 | 111 | <rewrite-static-analysis.version>2.15.0</rewrite-static-analysis.version> |
112 | 112 | <rewrite-migrate-java.version>3.15.1</rewrite-migrate-java.version> |
113 | 113 | <rewrite-recommendations.version>1.15.0</rewrite-recommendations.version> |
114 | | - |
115 | | - <!-- Maven Surefire ArgLine --> |
116 | | - <argLine>-Djava.util.logging.config.file=logging.properties</argLine> |
117 | 114 | </properties> |
118 | 115 |
|
119 | 116 | <dependencyManagement> |
|
353 | 350 | <groupId>org.apache.maven.plugins</groupId> |
354 | 351 | <artifactId>maven-surefire-plugin</artifactId> |
355 | 352 | <version>${maven-surefire-plugin.version}</version> |
| 353 | + <configuration> |
| 354 | + <trimStackTrace>false</trimStackTrace> <!-- SUREFIRE-1798 --> |
| 355 | + <excludes> |
| 356 | + <exclude>**/*ITest.*</exclude> |
| 357 | + <exclude>**/*ArchitectureRulesTest$*</exclude> |
| 358 | + </excludes> |
| 359 | + <argLine>@{argLine} -Djava.util.logging.config.file=logging.properties -javaagent:${org.mockito:mockito-core:jar}</argLine> |
| 360 | + </configuration> |
356 | 361 | <executions> |
357 | 362 | <execution> |
358 | 363 | <goals> |
|
370 | 375 | <goals> |
371 | 376 | <goal>test</goal> |
372 | 377 | </goals> |
373 | | - <id>architecture-tests</id> |
| 378 | + <id>architecture-test</id> |
374 | 379 | <phase>test</phase> |
375 | 380 | <configuration> |
376 | 381 | <includes> |
|
450 | 455 | <plugin> |
451 | 456 | <groupId>org.pitest</groupId> |
452 | 457 | <artifactId>pitest-maven</artifactId> |
453 | | - <version>${maven-pitest-plugin.version}</version> |
| 458 | + <version>${pitest-maven-plugin.version}</version> |
454 | 459 | <configuration> |
455 | 460 | <outputFormats>XML,HTML</outputFormats> |
456 | 461 | <excludedTestClasses> |
|
903 | 908 | </execution> |
904 | 909 | </executions> |
905 | 910 | </plugin> |
906 | | - <plugin> |
907 | | - <groupId>org.apache.maven.plugins</groupId> |
908 | | - <artifactId>maven-surefire-plugin</artifactId> |
909 | | - <configuration> |
910 | | - <trimStackTrace>false</trimStackTrace> |
911 | | - <!-- SUREFIRE-1798 --> |
912 | | - <excludes> |
913 | | - <exclude>**/*ITest.*</exclude> |
914 | | - <exclude>**/*ArchitectureRulesTest$*</exclude> |
915 | | - </excludes> |
916 | | - <argLine>@{argLine} -javaagent:${org.mockito:mockito-core:jar}</argLine> |
917 | | - </configuration> |
918 | | - </plugin> |
919 | 911 | <plugin> |
920 | 912 | <groupId>org.assertj</groupId> |
921 | 913 | <artifactId>assertj-assertions-generator-maven-plugin</artifactId> |
|
1070 | 1062 | <pmd.failOnViolation>false</pmd.failOnViolation> |
1071 | 1063 | <spotbugs.failOnError>false</spotbugs.failOnError> |
1072 | 1064 | <gpg.skip>true</gpg.skip> |
| 1065 | + <revapi.failBuildOnProblemsFound>false</revapi.failBuildOnProblemsFound> |
1073 | 1066 | </properties> |
1074 | 1067 | </profile> |
1075 | 1068 | <profile> |
|
0 commit comments