Skip to content

Commit af48621

Browse files
authored
Remove dead surefire executions in root pom (#17696)
1 parent 5af5e2b commit af48621

1 file changed

Lines changed: 0 additions & 42 deletions

File tree

pom.xml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,48 +1301,6 @@
13011301
</execution>
13021302
</executions>
13031303
</plugin>
1304-
<!-- Separates the unit tests from the integration tests. -->
1305-
<!-- TODO: Integration-Tests should be executed by the failsafe plugin -->
1306-
<plugin>
1307-
<groupId>org.apache.maven.plugins</groupId>
1308-
<artifactId>maven-surefire-plugin</artifactId>
1309-
<executions>
1310-
<execution>
1311-
<id>unit-tests</id>
1312-
<goals>
1313-
<goal>test</goal>
1314-
</goals>
1315-
<phase>test</phase>
1316-
<configuration>
1317-
<includes>
1318-
<!-- Include unit tests within integration-test phase. -->
1319-
<include>src/test/**/*Test.java</include>
1320-
</includes>
1321-
<excludes>
1322-
<!-- Exclude integration tests within (unit) test phase. -->
1323-
<exclude>src/test/**/*IT.java</exclude>
1324-
</excludes>
1325-
</configuration>
1326-
</execution>
1327-
<execution>
1328-
<id>integration-tests</id>
1329-
<goals>
1330-
<goal>test</goal>
1331-
</goals>
1332-
<phase>integration-test</phase>
1333-
<configuration>
1334-
<includes>
1335-
<!-- Include integration tests within integration-test phase. -->
1336-
<include>src/test/**/*IT.java</include>
1337-
</includes>
1338-
<excludes>
1339-
<!-- Exclude unit tests within (unit) test phase. -->
1340-
<exclude>src/test/**/*Test.java</exclude>
1341-
</excludes>
1342-
</configuration>
1343-
</execution>
1344-
</executions>
1345-
</plugin>
13461304
<!-- Also package the sources as jar -->
13471305
<plugin>
13481306
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)