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 090e74c  Cannot test on java 8
090e74c is described below

commit 090e74ce58e4f3c31b6ed7af3750f58673b25baa
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Jun 14 15:21:08 2021 +0200

    Cannot test on java 8
---
 dsl/camel-kotlin-dsl/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/dsl/camel-kotlin-dsl/pom.xml b/dsl/camel-kotlin-dsl/pom.xml
index 82159e7..229ab93 100644
--- a/dsl/camel-kotlin-dsl/pom.xml
+++ b/dsl/camel-kotlin-dsl/pom.xml
@@ -230,4 +230,17 @@
         </plugins>
     </build>
 
+    <!-- skip tests on java 8 -->
+    <profiles>
+        <profile>
+            <id>java-8</id>
+            <activation>
+                <jdk>1.8</jdk>
+            </activation>
+            <properties>
+                <skipTests>true</skipTests>
+            </properties>
+        </profile>
+    </profiles>
+
 </project>
\ No newline at end of file

Reply via email to