This is an automated email from the ASF dual-hosted git repository. valdar pushed a commit to branch camel-kafka-connector-4.4.x in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit a4f0183e095dc5e5795fe46a1bf41f75280f07fd Author: Andrea Tarocchi <[email protected]> AuthorDate: Tue May 28 19:09:37 2024 +0200 YYY: surefire to be squashed --- camel-kafka-connector-catalog/pom.xml | 8 ++++++++ connectors/pom.xml | 5 +++-- tests/pom.xml | 13 +++++++++++++ 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/camel-kafka-connector-catalog/pom.xml b/camel-kafka-connector-catalog/pom.xml index 7290a8b0ee..a58b512a3c 100644 --- a/camel-kafka-connector-catalog/pom.xml +++ b/camel-kafka-connector-catalog/pom.xml @@ -102,6 +102,14 @@ <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${version.maven.surefire.plugin}</version> + <configuration> + <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> + </configuration> + </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> diff --git a/connectors/pom.xml b/connectors/pom.xml index 918a8d7596..6ebb863ab1 100644 --- a/connectors/pom.xml +++ b/connectors/pom.xml @@ -50,11 +50,12 @@ <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <version>${version.maven.surefire.plugin}</version> <configuration> - <failIfNoTests>false</failIfNoTests> + <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> </configuration> - <version>${version.maven.surefire.plugin}</version> </plugin> <plugin> <groupId>org.apache.camel.kafkaconnector</groupId> diff --git a/tests/pom.xml b/tests/pom.xml index a0b2f52c70..a9b2e9c574 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -66,4 +66,17 @@ <module>itests-netty-http</module> <module>itests-google-pubsub</module> </modules> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${version.maven.surefire.plugin}</version> + <configuration> + <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> + </configuration> + </plugin> + </plugins> + </build> </project>
