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:12 UTC

[camel] branch main updated (75a0a2b4738 -> c667c42e309)

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

davsclaus pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 75a0a2b4738 Upgrade Localstack container image to version 2.2.0 (#10772)
     new 5dd7e0e5f9e Skip kudu during release
     new c667c42e309 CAMEL-19628: Restrict downloading JARs from Atlassian Maven

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 catalog/camel-allcomponents/pom.xml | 16 +++++++++++++++-
 components/camel-kudu/pom.xml       | 11 +++++++++++
 2 files changed, 26 insertions(+), 1 deletion(-)


[camel] 02/02: CAMEL-19628: Restrict downloading JARs from Atlassian Maven

Posted by da...@apache.org.
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 c667c42e3095aa50cbcc05860203df90489ebae5
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Jul 21 12:24:54 2023 +0200

    CAMEL-19628: Restrict downloading JARs from Atlassian Maven
---
 catalog/camel-allcomponents/pom.xml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/catalog/camel-allcomponents/pom.xml b/catalog/camel-allcomponents/pom.xml
index ba36b12626d..9254c8ccba5 100644
--- a/catalog/camel-allcomponents/pom.xml
+++ b/catalog/camel-allcomponents/pom.xml
@@ -32,7 +32,21 @@
     <name>Camel :: All Components Sync point</name>
     <description>Depends on all components to ensure correct build ordering</description>
 
-	<dependencies>
+    <repositories>
+        <repository>
+            <id>atlassian</id>
+            <url>https://packages.atlassian.com/maven-external/</url>
+            <name>atlassian external repo</name>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </repository>
+    </repositories>
+
+    <dependencies>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-activemq</artifactId>


[camel] 01/02: Skip kudu during release

Posted by da...@apache.org.
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>