You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2020/03/04 09:58:09 UTC

[camel-quarkus] branch quarkus-master updated (c90d5fc -> 593eaa5)

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

jamesnetherton pushed a change to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


 discard c90d5fc  Add required infinispan-component-annotations to infinispan itest
 discard 363d4e5  Set quarkus.version to 999-SNAPSHOT
     add 265c19b  Add JMS extension
     add d043ee2  Combine messaging tests into one module
     add 2384fe4  Regen docs
     new 144c0c7  Set quarkus.version to 999-SNAPSHOT
     new 593eaa5  Add required infinispan-component-annotations to infinispan itest

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c90d5fc)
            \
             N -- N -- N   refs/heads/quarkus-master (593eaa5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 .github/workflows/pr-build.yaml                    |   3 +-
 .../pages/list-of-camel-quarkus-extensions.adoc    |   7 +-
 extensions/{xpath => jms}/deployment/pom.xml       |  10 +-
 .../component/jms/deployment/JmsProcessor.java}    |   6 +-
 extensions/{lzf => jms}/pom.xml                    |   4 +-
 extensions/{azure => jms}/runtime/pom.xml          |  10 +-
 .../main/resources/META-INF/quarkus-extension.yaml |   9 +-
 .../component/paho/deployment/PahoProcessor.java   |  10 +-
 extensions/pom.xml                                 |   1 +
 extensions/readme.adoc                             |   7 +-
 .../{core-main-xml => messaging}/pom.xml           |  29 ++--
 .../component/messaging/it/JmsResource.java        | 105 ++++++++++++
 .../messaging/it/ActiveMQTestResource.java}        |  35 ++--
 .../quarkus/component/messaging/it/JmsIT.java}     |   4 +-
 .../quarkus/component/messaging/it/JmsTest.java}   |  32 ++--
 integration-tests/paho/pom.xml                     | 140 ----------------
 .../quarkus/component/paho/it/PahoResource.java    |  64 --------
 .../component/paho/it/ActiveMQTestResource.java    |  84 ----------
 .../camel/quarkus/component/paho/it/PahoIT.java    |  24 ---
 .../camel/quarkus/component/paho/it/PahoTest.java  |  46 ------
 integration-tests/pom.xml                          |   9 +-
 integration-tests/sjms/.gitignore                  |   1 -
 integration-tests/sjms/pom.xml                     | 176 ---------------------
 .../quarkus/component/sjms/CamelSjmsResource.java  |  76 ---------
 .../quarkus/component/sjms/CamelSjmsRoute.java     |  28 ----
 .../sjms/src/main/resources/application.properties |  24 ---
 .../quarkus/component/sjms/it/CamelSjmsIT.java     |  23 ---
 .../quarkus/component/sjms/it/CamelSjmsTest.java   |  60 -------
 .../component/sjms/it/CamelSjmsTestResource.java   |  83 ----------
 .../sjms/src/test/resources/broker.xml             |  44 ------
 pom.xml                                            |   3 +-
 poms/bom-deployment/pom.xml                        |   5 +
 poms/bom/pom.xml                                   |  41 +++++
 33 files changed, 248 insertions(+), 955 deletions(-)
 copy extensions/{xpath => jms}/deployment/pom.xml (90%)
 copy extensions/{ahc/deployment/src/main/java/org/apache/camel/quarkus/component/ahc/deployment/AhcProcessor.java => jms/deployment/src/main/java/org/apache/camel/quarkus/component/jms/deployment/JmsProcessor.java} (88%)
 copy extensions/{lzf => jms}/pom.xml (95%)
 copy extensions/{azure => jms}/runtime/pom.xml (91%)
 copy extensions/{consul => jms}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (88%)
 copy integration-tests/{core-main-xml => messaging}/pom.xml (84%)
 create mode 100644 integration-tests/messaging/src/main/java/org/apache/camel/quarkus/component/messaging/it/JmsResource.java
 copy integration-tests/{fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirTestResource.java => messaging/src/test/java/org/apache/camel/quarkus/component/messaging/it/ActiveMQTestResource.java} (60%)
 copy integration-tests/{exec/src/test/java/org/apache/camel/quarkus/component/exec/it/ExecIT.java => messaging/src/test/java/org/apache/camel/quarkus/component/messaging/it/JmsIT.java} (90%)
 copy integration-tests/{ftp/src/test/java/org/apache/camel/quarkus/component/ftp/it/FtpTest.java => messaging/src/test/java/org/apache/camel/quarkus/component/messaging/it/JmsTest.java} (60%)
 delete mode 100644 integration-tests/paho/pom.xml
 delete mode 100644 integration-tests/paho/src/main/java/org/apache/camel/quarkus/component/paho/it/PahoResource.java
 delete mode 100644 integration-tests/paho/src/test/java/org/apache/camel/quarkus/component/paho/it/ActiveMQTestResource.java
 delete mode 100644 integration-tests/paho/src/test/java/org/apache/camel/quarkus/component/paho/it/PahoIT.java
 delete mode 100644 integration-tests/paho/src/test/java/org/apache/camel/quarkus/component/paho/it/PahoTest.java
 delete mode 100644 integration-tests/sjms/.gitignore
 delete mode 100644 integration-tests/sjms/pom.xml
 delete mode 100644 integration-tests/sjms/src/main/java/org/apache/camel/quarkus/component/sjms/CamelSjmsResource.java
 delete mode 100644 integration-tests/sjms/src/main/java/org/apache/camel/quarkus/component/sjms/CamelSjmsRoute.java
 delete mode 100644 integration-tests/sjms/src/main/resources/application.properties
 delete mode 100644 integration-tests/sjms/src/test/java/org/apache/camel/quarkus/component/sjms/it/CamelSjmsIT.java
 delete mode 100644 integration-tests/sjms/src/test/java/org/apache/camel/quarkus/component/sjms/it/CamelSjmsTest.java
 delete mode 100644 integration-tests/sjms/src/test/java/org/apache/camel/quarkus/component/sjms/it/CamelSjmsTestResource.java
 delete mode 100644 integration-tests/sjms/src/test/resources/broker.xml


[camel-quarkus] 01/02: Set quarkus.version to 999-SNAPSHOT

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

jamesnetherton pushed a commit to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 144c0c70747601bea0cf5163152e57ecb2566228
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Fri Feb 7 10:48:54 2020 +0100

    Set quarkus.version to 999-SNAPSHOT
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 9936cfb..a847be7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,7 +44,7 @@
         <camel.version>3.1.0</camel.version>
         <guava.version>26.0-jre</guava.version>
         <hapi.version>4.1.0</hapi.version>
-        <quarkus.version>1.3.0.Alpha2</quarkus.version>
+        <quarkus.version>999-SNAPSHOT</quarkus.version>
         <httpmime.version>4.1.3</httpmime.version>
         <jetty.version>9.4.18.v20190429</jetty.version>
         <xstream.version>1.4.11</xstream.version>


[camel-quarkus] 02/02: Add required infinispan-component-annotations to infinispan itest

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

jamesnetherton pushed a commit to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 593eaa50fbfa1c20948d01f1dabacbd827401fca
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Feb 25 13:54:45 2020 +0000

    Add required infinispan-component-annotations to infinispan itest
---
 integration-tests/infinispan/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/integration-tests/infinispan/pom.xml b/integration-tests/infinispan/pom.xml
index d20bd1a..e4f51fb 100644
--- a/integration-tests/infinispan/pom.xml
+++ b/integration-tests/infinispan/pom.xml
@@ -82,6 +82,11 @@
         </dependency>
         <dependency>
             <groupId>org.infinispan</groupId>
+            <artifactId>infinispan-component-annotations</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.infinispan</groupId>
             <artifactId>infinispan-server-hotrod</artifactId>
             <type>test-jar</type>
             <scope>test</scope>