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 2023/07/21 10:25:13 UTC

[camel] 01/02: Skip kudu during release

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

commit 5dd7e0e5f9e132f1d5785866ad58acfccfe9bcc8
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Jul 21 11:33:15 2023 +0200

    Skip kudu during release
---
 components/camel-kudu/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/components/camel-kudu/pom.xml b/components/camel-kudu/pom.xml
index 3bc924fbf94..fc9d0beae0a 100644
--- a/components/camel-kudu/pom.xml
+++ b/components/camel-kudu/pom.xml
@@ -61,6 +61,17 @@
                 <os.detected.classifier>linux-x86_64</os.detected.classifier> <!-- Fake classifier to allow dependency resolution. kudu-binary will not be executed anyway on Windows -->
             </properties>
         </profile>
+        <profile>
+            <!-- kudu-binary is only available for Linux or macOS on x86 64 -->
+            <id>release</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <properties>
+                <maven.test.skip>true</maven.test.skip>
+                <os.detected.classifier>linux-x86_64</os.detected.classifier> <!-- Fake classifier to allow dependency resolution. kudu-binary will not be executed anyway on Windows -->
+            </properties>
+        </profile>
     </profiles>
 
     <dependencies>