oscerd commented on code in PR #12966: URL: https://github.com/apache/camel/pull/12966#discussion_r1475799453
########## pom.xml: ########## @@ -915,5 +925,37 @@ </plugins> </build> </profile> + <profile> + <id>integration-test</id> + <!-- This profile can be used to run integration tests all by themselves without running the unit tests. --> + <!-- Use the command "mvn verify -Pintegration-test -Dquickly=true" to run the integration tests. --> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <version>${maven-failsafe-plugin-version}</version> + <executions> + <execution> + <goals> + <goal>integration-test</goal> + <goal>verify</goal> + </goals> + </execution> + </executions> + <configuration> + <skipITs>false</skipITs> + <includes> + <include>**/*IT.java</include> + <include>**/*IntegrationTest.java</include> + </includes> + <excludes> + <exclude>**/*Test.java</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> Review Comment: I think it's better to avoid more profiles, we have already enough -- 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: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org