This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new e03fd2bd156 (chores) camel-ignite: prevent tests from flooding the
console with bogus messages
e03fd2bd156 is described below
commit e03fd2bd156b4c66ec98c51ca53fc6133c9a5b49
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Mon Jul 15 13:10:14 2024 +0200
(chores) camel-ignite: prevent tests from flooding the console with bogus
messages
---
components/camel-ignite/pom.xml | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/components/camel-ignite/pom.xml b/components/camel-ignite/pom.xml
index 34c3dd02b62..5c1b0442fa0 100644
--- a/components/camel-ignite/pom.xml
+++ b/components/camel-ignite/pom.xml
@@ -97,7 +97,23 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
-
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <configuration>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>