orpiske commented on code in PR #12966:
URL: https://github.com/apache/camel/pull/12966#discussion_r1475794696
##########
pom.xml:
##########
@@ -409,13 +410,22 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maves-surefire-plugin</artifactId>
+ <artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin-version}</version>
+ <configuration>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ <excludes>
+ <exclude>**/*IT.java</exclude>
+ <exclude>**/*IntegrationTest.java</exclude>
+ </excludes>
+ </configuration>
Review Comment:
We don't really need this. Surefire [already does it by
default](https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html).
##########
pom.xml:
##########
@@ -409,13 +410,22 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maves-surefire-plugin</artifactId>
+ <artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin-version}</version>
+ <configuration>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ <excludes>
+ <exclude>**/*IT.java</exclude>
+ <exclude>**/*IntegrationTest.java</exclude>
+ </excludes>
+ </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
- <version>${maven-surefire-plugin-version}</version>
+ <version>${maven-failsafe-plugin-version}</version>
Review Comment:
This is OK.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]