You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/12/07 06:02:23 UTC

[camel] branch main updated: (chores) camel-kafka: added automated forward compatibility tests with Kafka 3 (#6509)

This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 e63ceaf  (chores) camel-kafka: added automated forward compatibility tests with Kafka 3 (#6509)
e63ceaf is described below

commit e63ceafa849ecc1e5185d95933d2f0dbed5b93e0
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Tue Dec 7 07:01:29 2021 +0100

    (chores) camel-kafka: added automated forward compatibility tests with Kafka 3 (#6509)
---
 components/camel-kafka/pom.xml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/components/camel-kafka/pom.xml b/components/camel-kafka/pom.xml
index 822ee11..3bbddde 100644
--- a/components/camel-kafka/pom.xml
+++ b/components/camel-kafka/pom.xml
@@ -106,4 +106,27 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>kafka-3</id>
+                        <configuration>
+                            <systemPropertyVariables>
+                                <kafka.instance.type>local-kafka3-container</kafka.instance.type>
+                            </systemPropertyVariables>
+                            <reportNameSuffix>kafka-3</reportNameSuffix>
+                        </configuration>
+                        <goals>
+                            <goal>integration-test</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>