You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/04/11 08:53:20 UTC

[camel-kamelets] branch main updated (6379ae81 -> 7bab653c)

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

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


    from 6379ae81 Add back Kafka SSL Source Kamelet
     new 1a4afe82 Apache ActiveMQ sink Kamelet: introduce ActiveMQ-Http dependency
     new 7db99299 Apache ActiveMQ sink Kamelet: Add ActiveMQ-http dependency to BOM
     new e4541eea Apache ActiveMQ sink Kamelet: introduce ActiveMQ-Http dependency
     new 56ea5314 Apache ActiveMQ source Kamelet: introduce ActiveMQ-Http dependency
     new 7bab653c Apache ActiveMQ source Kamelet: introduce ActiveMQ-Http dependency

The 5 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:
 kamelets/jms-apache-activemq-sink.kamelet.yaml                       | 1 +
 kamelets/jms-apache-activemq-source.kamelet.yaml                     | 1 +
 library/camel-kamelets-bom/pom.xml                                   | 5 +++++
 .../main/resources/kamelets/jms-apache-activemq-sink.kamelet.yaml    | 1 +
 .../main/resources/kamelets/jms-apache-activemq-source.kamelet.yaml  | 1 +
 pom.xml                                                              | 4 +++-
 6 files changed, 12 insertions(+), 1 deletion(-)


[camel-kamelets] 05/05: Apache ActiveMQ source Kamelet: introduce ActiveMQ-Http dependency

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 7bab653c84eebbc69eb9f28b58050f38b1e157f3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 11 10:46:43 2022 +0200

    Apache ActiveMQ source Kamelet: introduce ActiveMQ-Http dependency
---
 .../src/main/resources/kamelets/jms-apache-activemq-source.kamelet.yaml  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-source.kamelet.yaml
index 70e771d0..8cb243b4 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-source.kamelet.yaml
@@ -72,6 +72,7 @@ spec:
   dependencies:
   - "camel:activemq"
   - "camel:kamelet"
+  - "mvn:org.apache.activemq:activemq-http:5.16.2"
   template:
     beans:
       - name: activemq-source-local


[camel-kamelets] 01/05: Apache ActiveMQ sink Kamelet: introduce ActiveMQ-Http dependency

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 1a4afe82489f5f5e5da5146d4ed9313b05373be0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 11 10:41:04 2022 +0200

    Apache ActiveMQ sink Kamelet: introduce ActiveMQ-Http dependency
---
 kamelets/jms-apache-activemq-sink.kamelet.yaml | 1 +
 pom.xml                                        | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/kamelets/jms-apache-activemq-sink.kamelet.yaml b/kamelets/jms-apache-activemq-sink.kamelet.yaml
index 139d71a8..8648bc91 100644
--- a/kamelets/jms-apache-activemq-sink.kamelet.yaml
+++ b/kamelets/jms-apache-activemq-sink.kamelet.yaml
@@ -72,6 +72,7 @@ spec:
   dependencies:
   - "camel:kamelet"
   - "camel:activemq"
+  - "mvn:org.apache.activemq:activemq-http:5.16.2"
   template:
     beans:
       - name: sinkConnectionFactoryBean-local
diff --git a/pom.xml b/pom.xml
index 75c11ad8..760efefb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,6 +73,7 @@
         <version.org.apache.qpid.qpid-jms-client>1.0.0</version.org.apache.qpid.qpid-jms-client>
         <version.org.apache.activemq.artemis-jms-client-all>2.20.0</version.org.apache.activemq.artemis-jms-client-all>
         <version.org.postgresql.postgresql>42.3.3</version.org.postgresql.postgresql>
+        <version.org.apache.activemq.activemq-http>5.16.2</version.org.apache.activemq.activemq-http>
     </properties>
 
     <developers>
@@ -313,7 +314,8 @@
                         "version.com.amazon.redshift.redshift-jdbc42": "${version.com.amazon.redshift.redshift-jdbc42}",
                         "version.org.apache.qpid.qpid-jms-client": "${version.org.apache.qpid.qpid-jms-client}",
                         "version.org.apache.activemq.artemis-jms-client-all": "${version.org.apache.activemq.artemis-jms-client-all}",
-                        "version.org.postgresql.postgresql": "${version.org.postgresql.postgresql}"
+                        "version.org.postgresql.postgresql": "${version.org.postgresql.postgresql}",
+                        "version.org.apache.activemq.activemq-http": "${version.org.apache.activemq.activemq-http}",
                     ])
                     </source>
                 </configuration>


[camel-kamelets] 02/05: Apache ActiveMQ sink Kamelet: Add ActiveMQ-http dependency to BOM

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 7db992991735e48bf801f64e0054970711d89b6a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 11 10:41:57 2022 +0200

    Apache ActiveMQ sink Kamelet: Add ActiveMQ-http dependency to BOM
---
 library/camel-kamelets-bom/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/library/camel-kamelets-bom/pom.xml b/library/camel-kamelets-bom/pom.xml
index 145c3768..b0133395 100644
--- a/library/camel-kamelets-bom/pom.xml
+++ b/library/camel-kamelets-bom/pom.xml
@@ -61,6 +61,11 @@
         <artifactId>postgresql</artifactId>
         <version>${version.org.postgresql.postgresql}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>activemq-http</artifactId>
+        <version>${version.org.apache.activemq.activemq-http}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 </project>


[camel-kamelets] 03/05: Apache ActiveMQ sink Kamelet: introduce ActiveMQ-Http dependency

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit e4541eea94cd6b018d6340008d93c3e721a077cb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 11 10:44:49 2022 +0200

    Apache ActiveMQ sink Kamelet: introduce ActiveMQ-Http dependency
---
 .../src/main/resources/kamelets/jms-apache-activemq-sink.kamelet.yaml    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-sink.kamelet.yaml
index 139d71a8..8648bc91 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/jms-apache-activemq-sink.kamelet.yaml
@@ -72,6 +72,7 @@ spec:
   dependencies:
   - "camel:kamelet"
   - "camel:activemq"
+  - "mvn:org.apache.activemq:activemq-http:5.16.2"
   template:
     beans:
       - name: sinkConnectionFactoryBean-local


[camel-kamelets] 04/05: Apache ActiveMQ source Kamelet: introduce ActiveMQ-Http dependency

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 56ea53140a38c0565b168915300829d652ea3268
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Apr 11 10:46:02 2022 +0200

    Apache ActiveMQ source Kamelet: introduce ActiveMQ-Http dependency
---
 kamelets/jms-apache-activemq-source.kamelet.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kamelets/jms-apache-activemq-source.kamelet.yaml b/kamelets/jms-apache-activemq-source.kamelet.yaml
index 70e771d0..8cb243b4 100644
--- a/kamelets/jms-apache-activemq-source.kamelet.yaml
+++ b/kamelets/jms-apache-activemq-source.kamelet.yaml
@@ -72,6 +72,7 @@ spec:
   dependencies:
   - "camel:activemq"
   - "camel:kamelet"
+  - "mvn:org.apache.activemq:activemq-http:5.16.2"
   template:
     beans:
       - name: activemq-source-local