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 2021/02/10 07:38:37 UTC

[camel-quarkus] branch quarkus-master updated (54d2300 -> 0987a81)

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 54d2300  Disable azure itest native builds until issues are fixed:
 discard 4d7a872  Upgrade to Quarkus 1.12.0.Final
     add af400d3  Upgrade to cq-maven-plugin 0.28.0 - new-test mojo added
     add 073835c  Test AWS 2 SNS properly
     add 88ffc0c  Updated CHANGELOG.md
     new 2d77cce  Upgrade to Quarkus 1.12.0.Final
     new 0987a81  Disable azure itest native builds until issues are fixed:

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   (54d2300)
            \
             N -- N -- N   refs/heads/quarkus-master (0987a81)

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:
 CHANGELOG.md                                       |   7 +-
 .../test/support/aws2/Aws2TestResource.java        |   1 +
 .../{aws2-sqs => aws2-sqs-sns}/README.adoc         |   0
 .../{aws2-sqs => aws2-sqs-sns}/pom.xml             |  25 +++-
 .../component/aws2/sqs/it/Aws2SqsResource.java     |  46 +++++-
 .../src/main/resources/application.properties      |   4 +
 .../quarkus/component/aws2/sqs/it/Aws2SqsIT.java   |   0
 .../quarkus/component/aws2/sqs/it/Aws2SqsTest.java |  33 ++++-
 .../component/aws2/sqs/it/Aws2SqsTestResource.java | 161 +++++++++++++++++++++
 .../component/aws2/sqs/it/Aws2SqsTestResource.java |  71 ---------
 integration-tests/aws2/pom.xml                     |  30 ----
 .../camel/quarkus/component/aws2/CamelRoute.java   |   5 -
 integration-tests/master/pom.xml                   |   2 +-
 integration-tests/pom.xml                          |   2 +-
 pom.xml                                            |   2 +-
 tooling/scripts/test-categories.yaml               |   2 +-
 16 files changed, 263 insertions(+), 128 deletions(-)
 rename integration-tests/{aws2-sqs => aws2-sqs-sns}/README.adoc (100%)
 rename integration-tests/{aws2-sqs => aws2-sqs-sns}/pom.xml (83%)
 rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsResource.java (64%)
 rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/main/resources/application.properties (87%)
 rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsIT.java (100%)
 rename integration-tests/{aws2-sqs => aws2-sqs-sns}/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java (71%)
 create mode 100644 integration-tests/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestResource.java
 delete mode 100644 integration-tests/aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestResource.java


[camel-quarkus] 02/02: Disable azure itest native builds until issues are fixed:

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 0987a81f741a58fa0b031ba9bff99f6593f3188c
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Feb 9 17:57:10 2021 +0000

    Disable azure itest native builds until issues are fixed:
    
    * https://github.com/apache/camel-quarkus/issues/2204
    * https://github.com/apache/camel-quarkus/issues/2207
---
 integration-tests/azure-eventhubs/pom.xml     | 4 ++++
 integration-tests/azure-storage-blob/pom.xml  | 4 ++++
 integration-tests/azure-storage-queue/pom.xml | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/integration-tests/azure-eventhubs/pom.xml b/integration-tests/azure-eventhubs/pom.xml
index ba18caa..e2276fe 100644
--- a/integration-tests/azure-eventhubs/pom.xml
+++ b/integration-tests/azure-eventhubs/pom.xml
@@ -104,6 +104,9 @@
         </dependency>
     </dependencies>
 
+    <!-- TODO: Enable when the following issues are resolved:
+        - https://github.com/apache/camel-quarkus/issues/2204
+        - https://github.com/apache/camel-quarkus/issues/2207
     <profiles>
         <profile>
             <id>native</id>
@@ -133,5 +136,6 @@
             </build>
         </profile>
     </profiles>
+    -->
 
 </project>
diff --git a/integration-tests/azure-storage-blob/pom.xml b/integration-tests/azure-storage-blob/pom.xml
index 0db13a6..2c6d358 100644
--- a/integration-tests/azure-storage-blob/pom.xml
+++ b/integration-tests/azure-storage-blob/pom.xml
@@ -84,6 +84,9 @@
         </dependency>
     </dependencies>
 
+    <!-- TODO: Enable when the following issues are resolved:
+        - https://github.com/apache/camel-quarkus/issues/2204
+        - https://github.com/apache/camel-quarkus/issues/2207
     <profiles>
         <profile>
             <id>native</id>
@@ -113,5 +116,6 @@
             </build>
         </profile>
     </profiles>
+    -->
 
 </project>
diff --git a/integration-tests/azure-storage-queue/pom.xml b/integration-tests/azure-storage-queue/pom.xml
index f40032b..b4d1b5a 100644
--- a/integration-tests/azure-storage-queue/pom.xml
+++ b/integration-tests/azure-storage-queue/pom.xml
@@ -84,6 +84,9 @@
         </dependency>
     </dependencies>
 
+    <!-- TODO: Enable when the following issues are resolved:
+        - https://github.com/apache/camel-quarkus/issues/2204
+        - https://github.com/apache/camel-quarkus/issues/2207
     <profiles>
         <profile>
             <id>native</id>
@@ -113,5 +116,6 @@
             </build>
         </profile>
     </profiles>
+    -->
 
 </project>


[camel-quarkus] 01/02: Upgrade to Quarkus 1.12.0.Final

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 2d77cce8327df304cfc299ed35c868ca912d0f75
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Nov 12 07:00:19 2020 +0000

    Upgrade to Quarkus 1.12.0.Final
---
 integration-tests/main-command-mode/pom.xml | 3 +--
 integration-tests/master/pom.xml            | 3 +--
 pom.xml                                     | 2 +-
 3 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/integration-tests/main-command-mode/pom.xml b/integration-tests/main-command-mode/pom.xml
index 8fdc68c..958deb7 100644
--- a/integration-tests/main-command-mode/pom.xml
+++ b/integration-tests/main-command-mode/pom.xml
@@ -29,8 +29,7 @@
     <name>Camel Quarkus :: Integration Tests :: Main Command Mode</name>
 
     <properties>
-
-        <quarkus.runner.jar>${project.build.directory}/${project.artifactId}-${project.version}-runner.jar</quarkus.runner.jar>
+        <quarkus.runner.jar>${project.build.directory}/quarkus-app/quarkus-run.jar</quarkus.runner.jar>
     </properties>
 
     <dependencies>
diff --git a/integration-tests/master/pom.xml b/integration-tests/master/pom.xml
index 69d5a08..df351eb 100644
--- a/integration-tests/master/pom.xml
+++ b/integration-tests/master/pom.xml
@@ -31,8 +31,7 @@
     <description>Integration tests for Camel Quarkus Master extension</description>
 
     <properties>
-
-        <quarkus.runner>${project.build.directory}/${project.artifactId}-${project.version}-runner.jar</quarkus.runner>
+        <quarkus.runner>${project.build.directory}/quarkus-app/quarkus-run.jar</quarkus.runner>
     </properties>
 
     <dependencyManagement>
diff --git a/pom.xml b/pom.xml
index fa6a71a..44e6663 100644
--- a/pom.xml
+++ b/pom.xml
@@ -102,7 +102,7 @@
         <okio.version>${squareup-okio-version}</okio.version><!-- keep in sync with okhttp -->
         <optaplanner.version>7.46.0.Final</optaplanner.version>
         <quarkiverse-minio.version>0.2.0</quarkiverse-minio.version>
-        <quarkus.version>1.11.1.Final</quarkus.version>
+        <quarkus.version>999-SNAPSHOT</quarkus.version>
         <quarkus-google-cloud.version>0.3.0</quarkus-google-cloud.version>
         <quarkus-hazelcast-client.version>1.1.1</quarkus-hazelcast-client.version>
         <quarkus-qpid-jms.version>0.22.0</quarkus-qpid-jms.version>