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/12/08 12:46:24 UTC

[camel-quarkus] branch quarkus-2.6.0.CR1 created (now 95f3324)

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

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


      at 95f3324  Disable vertx-kafka integration tests and native build due to #3358

This branch includes the following new commits:

     new 32d2956  Upgrade Quarkus to 2.6.0.CR1
     new 95f3324  Disable vertx-kafka integration tests and native build due to #3358

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.


[camel-quarkus] 01/02: Upgrade Quarkus to 2.6.0.CR1

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

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

commit 32d29566f95e30ca7057ff2ce37c885869e202f3
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Nov 11 14:04:24 2021 +0000

    Upgrade Quarkus to 2.6.0.CR1
---
 docs/antora.yml                                    |  4 +-
 .../csimple/deployment/CSimpleProcessor.java       |  5 ++-
 extensions/ftp/deployment/pom.xml                  |  2 +-
 extensions/ftp/runtime/pom.xml                     |  2 +-
 extensions/git/deployment/pom.xml                  |  2 +-
 extensions/git/runtime/pom.xml                     |  2 +-
 extensions/tika/deployment/pom.xml                 |  2 +-
 extensions/tika/runtime/pom.xml                    |  2 +-
 .../aws2-quarkus-client/aws2-ddb/pom.xml           |  2 +-
 .../aws2-quarkus-client/aws2-s3/pom.xml            |  2 +-
 .../aws2-quarkus-client/aws2-ses/pom.xml           |  2 +-
 .../aws2-quarkus-client/aws2-sqs-sns/pom.xml       |  4 +-
 .../aws2-quarkus-client-grouped/pom.xml            | 10 ++---
 integration-tests/jms-artemis-client/pom.xml       |  2 +-
 integration-tests/jta/pom.xml                      |  2 +-
 integration-tests/sjms-artemis-client/pom.xml      |  2 +-
 integration-tests/sjms2-artemis-client/pom.xml     |  2 +-
 integration-tests/tika/pom.xml                     |  4 --
 pom.xml                                            | 18 ++++++---
 poms/bom-test/pom.xml                              | 29 ++++++++++++++
 poms/bom/pom.xml                                   | 46 +++++++++++++++++++++-
 21 files changed, 110 insertions(+), 36 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index bc1bbc6..0c3b80f 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -25,9 +25,9 @@ nav:
 asciidoc:
   attributes:
     min-maven-version: 3.6.2 # replace ${min-maven-version}
-    target-maven-version: 3.8.1 # replace ${target-maven-version}
+    target-maven-version: 3.8.4 # replace ${target-maven-version}
     camel-version: 3.13.0 # replace ${camel.version}
-    quarkus-version: 2.5.0.Final # replace ${quarkus.version}
+    quarkus-version: 2.6.0.CR1 # replace ${quarkus.version}
     # attributes used in xrefs to other Antora components
     cq-camel-components: 3.13.x@components # replace ${camel.docs.components.xref}
     quarkus-examples-version: latest
diff --git a/extensions/csimple/deployment/src/main/java/org/apache/camel/quarkus/component/csimple/deployment/CSimpleProcessor.java b/extensions/csimple/deployment/src/main/java/org/apache/camel/quarkus/component/csimple/deployment/CSimpleProcessor.java
index 72229a3..c5266fd 100644
--- a/extensions/csimple/deployment/src/main/java/org/apache/camel/quarkus/component/csimple/deployment/CSimpleProcessor.java
+++ b/extensions/csimple/deployment/src/main/java/org/apache/camel/quarkus/component/csimple/deployment/CSimpleProcessor.java
@@ -310,8 +310,9 @@ class CSimpleProcessor {
                 csimpleClassesDir.toFile(),
                 StandardCharsets.UTF_8.name(),
                 Collections.emptyList(),
-                "1.8",
-                "1.8",
+                null,
+                "11",
+                "11",
                 Collections.emptyList(),
                 Collections.emptyList());
     }
diff --git a/extensions/ftp/deployment/pom.xml b/extensions/ftp/deployment/pom.xml
index d5101c4..96ce993 100644
--- a/extensions/ftp/deployment/pom.xml
+++ b/extensions/ftp/deployment/pom.xml
@@ -43,7 +43,7 @@
             <artifactId>camel-quarkus-ftp</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.jsch</groupId>
             <artifactId>quarkus-jsch-deployment</artifactId>
         </dependency>
     </dependencies>
diff --git a/extensions/ftp/runtime/pom.xml b/extensions/ftp/runtime/pom.xml
index 407ff7b..2767ec4 100644
--- a/extensions/ftp/runtime/pom.xml
+++ b/extensions/ftp/runtime/pom.xml
@@ -57,7 +57,7 @@
             <artifactId>camel-quarkus-core</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.jsch</groupId>
             <artifactId>quarkus-jsch</artifactId>
         </dependency>
         <dependency>
diff --git a/extensions/git/deployment/pom.xml b/extensions/git/deployment/pom.xml
index 45ee448..10c5820 100644
--- a/extensions/git/deployment/pom.xml
+++ b/extensions/git/deployment/pom.xml
@@ -35,7 +35,7 @@
             <artifactId>camel-quarkus-core-deployment</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.jgit</groupId>
             <artifactId>quarkus-jgit-deployment</artifactId>
         </dependency>
         <dependency>
diff --git a/extensions/git/runtime/pom.xml b/extensions/git/runtime/pom.xml
index 7b08620..9df0f74 100644
--- a/extensions/git/runtime/pom.xml
+++ b/extensions/git/runtime/pom.xml
@@ -53,7 +53,7 @@
             <artifactId>camel-quarkus-core</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.jgit</groupId>
             <artifactId>quarkus-jgit</artifactId>
         </dependency>
         <dependency>
diff --git a/extensions/tika/deployment/pom.xml b/extensions/tika/deployment/pom.xml
index 2a4ecb7..27af0be 100644
--- a/extensions/tika/deployment/pom.xml
+++ b/extensions/tika/deployment/pom.xml
@@ -45,7 +45,7 @@
             <artifactId>camel-quarkus-tika</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.tika</groupId>
             <artifactId>quarkus-tika-deployment</artifactId>
         </dependency>
         <dependency>
diff --git a/extensions/tika/runtime/pom.xml b/extensions/tika/runtime/pom.xml
index a83af0b..aa37888 100644
--- a/extensions/tika/runtime/pom.xml
+++ b/extensions/tika/runtime/pom.xml
@@ -71,7 +71,7 @@
             <artifactId>camel-quarkus-support-xalan</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.tika</groupId>
             <artifactId>quarkus-tika</artifactId>
         </dependency>
     </dependencies>
diff --git a/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml
index f8c9d98..8c3db3c 100644
--- a/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml
+++ b/integration-test-groups/aws2-quarkus-client/aws2-ddb/pom.xml
@@ -36,7 +36,7 @@
             <artifactId>camel-quarkus-aws2-ddb</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-dynamodb</artifactId>
         </dependency>
         <dependency>
diff --git a/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml
index 5d165f6..848abdf 100644
--- a/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml
+++ b/integration-test-groups/aws2-quarkus-client/aws2-s3/pom.xml
@@ -40,7 +40,7 @@
             <artifactId>camel-quarkus-aws2-kms</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-s3</artifactId>
         </dependency>
         <dependency>
diff --git a/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml
index cdc047b..1dcb440 100644
--- a/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml
+++ b/integration-test-groups/aws2-quarkus-client/aws2-ses/pom.xml
@@ -36,7 +36,7 @@
             <artifactId>camel-quarkus-aws2-ses</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-ses</artifactId>
         </dependency>
         <dependency>
diff --git a/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml b/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml
index 64ba705..d4794ac 100644
--- a/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml
+++ b/integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/pom.xml
@@ -40,11 +40,11 @@
             <artifactId>camel-quarkus-aws2-sns</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-sqs</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-sns</artifactId>
         </dependency>
         <dependency>
diff --git a/integration-tests/aws2-quarkus-client-grouped/pom.xml b/integration-tests/aws2-quarkus-client-grouped/pom.xml
index fdf1a59..c3cb341 100644
--- a/integration-tests/aws2-quarkus-client-grouped/pom.xml
+++ b/integration-tests/aws2-quarkus-client-grouped/pom.xml
@@ -33,23 +33,23 @@
     <!-- Regenerate the dependencies via `mvn process-resources -Pformat -N` from the source tree root directory -->
     <dependencies>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-dynamodb</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-s3</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-ses</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-sns</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.amazonservices</groupId>
             <artifactId>quarkus-amazon-sqs</artifactId>
         </dependency>
         <dependency>
diff --git a/integration-tests/jms-artemis-client/pom.xml b/integration-tests/jms-artemis-client/pom.xml
index 9bd49ca..f9f6243 100644
--- a/integration-tests/jms-artemis-client/pom.xml
+++ b/integration-tests/jms-artemis-client/pom.xml
@@ -45,7 +45,7 @@
 
         <!-- The JMS client library to test with -->
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.artemis</groupId>
             <artifactId>quarkus-artemis-jms</artifactId>
         </dependency>
 
diff --git a/integration-tests/jta/pom.xml b/integration-tests/jta/pom.xml
index d53a22a..3fe5959 100644
--- a/integration-tests/jta/pom.xml
+++ b/integration-tests/jta/pom.xml
@@ -64,7 +64,7 @@
             <artifactId>quarkus-jdbc-h2</artifactId>
         </dependency>
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.artemis</groupId>
             <artifactId>quarkus-artemis-jms</artifactId>
         </dependency>
 
diff --git a/integration-tests/sjms-artemis-client/pom.xml b/integration-tests/sjms-artemis-client/pom.xml
index 3a2751b..45f0fbb 100644
--- a/integration-tests/sjms-artemis-client/pom.xml
+++ b/integration-tests/sjms-artemis-client/pom.xml
@@ -45,7 +45,7 @@
 
         <!-- The JMS client library to test with -->
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.artemis</groupId>
             <artifactId>quarkus-artemis-jms</artifactId>
         </dependency>
 
diff --git a/integration-tests/sjms2-artemis-client/pom.xml b/integration-tests/sjms2-artemis-client/pom.xml
index 8c112bc..aab58a9 100644
--- a/integration-tests/sjms2-artemis-client/pom.xml
+++ b/integration-tests/sjms2-artemis-client/pom.xml
@@ -45,7 +45,7 @@
 
         <!-- The JMS client library to test with -->
         <dependency>
-            <groupId>io.quarkus</groupId>
+            <groupId>io.quarkiverse.artemis</groupId>
             <artifactId>quarkus-artemis-jms</artifactId>
         </dependency>
 
diff --git a/integration-tests/tika/pom.xml b/integration-tests/tika/pom.xml
index e46aa05..c8577be 100644
--- a/integration-tests/tika/pom.xml
+++ b/integration-tests/tika/pom.xml
@@ -44,10 +44,6 @@
             <groupId>io.quarkus</groupId>
             <artifactId>quarkus-resteasy</artifactId>
         </dependency>
-        <dependency>
-            <groupId>io.quarkus</groupId>
-            <artifactId>quarkus-tika</artifactId>
-        </dependency>
 
         <!-- test dependencies -->
         <dependency>
diff --git a/pom.xml b/pom.xml
index 3e0eacd..95bfc96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -48,9 +48,14 @@
         <cassandra-quarkus.version>1.1.1</cassandra-quarkus.version><!-- https://repo1.maven.org/maven2/com/datastax/oss/quarkus/cassandra-quarkus-bom/ -->
         <debezium.version>1.6.1.Final</debezium.version><!-- May go back to Camel's ${debezium-version} when they are in sync https://repo1.maven.org/maven2/io/debezium/debezium-bom/ -->
         <optaplanner.version>8.9.1.Final</optaplanner.version><!-- May go back to Camel's ${optaplanner-version} when they are in sync https://repo1.maven.org/maven2/org/optaplanner/optaplanner-quarkus/ -->
-        <quarkiverse.freemarker.version>0.3.0</quarkiverse.freemarker.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/freemarker/quarkus-freemarker-parent/ -->
+        <quarkiverse-amazonservices.version>1.0.0</quarkiverse-amazonservices.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/amazonservices/quarkus-amazon-services-parent/ -->
+        <quarkiverse-artemis.version>1.0.1</quarkiverse-artemis.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/artemis/quarkus-artemis-parent/ -->
+        <quarkiverse-freemarker.version>0.3.0</quarkiverse-freemarker.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/freemarker/quarkus-freemarker-parent/ -->
+        <quarkiverse-jgit.version>1.0.0</quarkiverse-jgit.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jgit/quarkus-jgit-parent/ -->
+        <quarkiverse-jsch.version>1.0.0</quarkiverse-jsch.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jsch/quarkus-jsch-parent/ -->
         <quarkiverse-minio.version>2.3.0</quarkiverse-minio.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/minio/quarkus-minio-parent/ -->
-        <quarkus.version>2.5.0.Final</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
+        <quarkiverse-tika.version>1.0.1</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
+        <quarkus.version>2.6.0.CR1</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
         <quarkus-hazelcast-client.version>2.0.0</quarkus-hazelcast-client.version><!-- https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ -->
         <quarkus-qpid-jms.version>0.30.0</quarkus-qpid-jms.version><!-- https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ -->
 
@@ -60,6 +65,7 @@
         <animal-sniffer.version>1.18</animal-sniffer.version>
         <antlr3.version>3.5.2</antlr3.version><!-- Spark, Stringtemplate and probably others -->
         <avro.version>1.11.0</avro.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.apache.avro:avro -->
+        <awssdk.version>2.17.90</awssdk.version><!-- TODO: Remove this https://github.com/apache/camel-quarkus/issues/3366 -->
         <aws-java-sdk.version>1.11.714</aws-java-sdk.version>
         <azure-sdk-bom.version>1.0.5</azure-sdk-bom.version><!-- Keep in sync with camel-azure component versions -->
         <bouncycastle.version>1.69</bouncycastle.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.bouncycastle:bcprov-jdk15on -->
@@ -104,9 +110,9 @@
         <jetty.version>${jetty9-version}</jetty.version>
         <jnr-ffi.version>2.1.2</jnr-ffi.version><!-- Mess in web3j transitive deps -->
         <json-smart.version>2.4.7</json-smart.version>
-        <kafka.version>2.8.1</kafka.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.apache.kafka:kafka-clients -->
+        <kafka.version>3.0.0</kafka.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.apache.kafka:kafka-clients -->
         <kudu.version>${kudu-version}</kudu.version>
-        <kotlin.version>1.5.31</kotlin.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.jetbrains.kotlin:kotlin-stdlib -->
+        <kotlin.version>1.6.0</kotlin.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.jetbrains.kotlin:kotlin-stdlib -->
         <libthrift.version>${libthrift-version}</libthrift.version> <!-- Spark -->
         <metrics.version>${metrics-version}</metrics.version><!-- Spark -->
         <mvel2.version>${mvel-version}</mvel2.version>
@@ -116,7 +122,7 @@
         <retrofit.version>2.5.0</retrofit.version>
         <saaj.impl.version>1.5.3</saaj.impl.version>
         <scala-2.12.version>2.12.15</scala-2.12.version><!-- Spark -->
-        <smallrye.reactive.messaging.camel.version>3.11.0</smallrye.reactive.messaging.camel.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.smallrye.reactive:smallrye-reactive-messaging-provider -->
+        <smallrye.reactive.messaging.camel.version>3.13.0</smallrye.reactive.messaging.camel.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.smallrye.reactive:smallrye-reactive-messaging-provider -->
         <spring.version>${spring5-version}</spring.version>
         <snakeyaml.version>${snakeyaml-version}</snakeyaml.version>
         <snappy.version>1.1.7.7</snappy.version><!-- Spark -->
@@ -193,7 +199,7 @@
 
         <!-- maven-enforcer-plugin -->
         <min-maven-version>3.6.2</min-maven-version>
-        <target-maven-version>3.8.1</target-maven-version><!-- @sync io.quarkus:quarkus-build-parent:${quarkus.version} prop:proposed-maven-version -->
+        <target-maven-version>3.8.4</target-maven-version><!-- @sync io.quarkus:quarkus-build-parent:${quarkus.version} prop:proposed-maven-version -->
         <supported-maven-versions>[${min-maven-version},)</supported-maven-versions>
 
         <!-- maven-release-plugin -->
diff --git a/poms/bom-test/pom.xml b/poms/bom-test/pom.xml
index 3c917ad..8632724 100644
--- a/poms/bom-test/pom.xml
+++ b/poms/bom-test/pom.xml
@@ -48,6 +48,14 @@
                 <scope>import</scope>
             </dependency>
             <dependency>
+                <groupId>io.quarkiverse.amazonservices</groupId>
+                <artifactId>quarkus-amazon-services-bom</artifactId>
+                <version>${quarkiverse-amazonservices.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+
+            <dependency>
                 <groupId>org.apache.camel.quarkus</groupId>
                 <artifactId>camel-quarkus-integration-test-support-custom-dataformat</artifactId>
                 <version>${camel-quarkus.version}</version>
@@ -153,6 +161,27 @@
             </dependency>
 
             <dependency>
+                <groupId>io.quarkiverse.artemis</groupId>
+                <artifactId>quarkus-artemis-core</artifactId>
+                <version>${quarkiverse-artemis.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.artemis</groupId>
+                <artifactId>quarkus-artemis-core-deployment</artifactId>
+                <version>${quarkiverse-artemis.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.artemis</groupId>
+                <artifactId>quarkus-artemis-jms</artifactId>
+                <version>${quarkiverse-artemis.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.artemis</groupId>
+                <artifactId>quarkus-artemis-jms-deployment</artifactId>
+                <version>${quarkiverse-artemis.version}</version>
+            </dependency>
+
+            <dependency>
                 <groupId>org.apache.ftpserver</groupId>
                 <artifactId>ftpserver-core</artifactId>
                 <version>${ftpserver.version}</version>
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index 6511cd7..4af1f93 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -5977,12 +5977,32 @@
             <dependency>
                 <groupId>io.quarkiverse.freemarker</groupId>
                 <artifactId>quarkus-freemarker</artifactId>
-                <version>${quarkiverse.freemarker.version}</version>
+                <version>${quarkiverse-freemarker.version}</version>
             </dependency>
             <dependency>
                 <groupId>io.quarkiverse.freemarker</groupId>
                 <artifactId>quarkus-freemarker-deployment</artifactId>
-                <version>${quarkiverse.freemarker.version}</version>
+                <version>${quarkiverse-freemarker.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.jgit</groupId>
+                <artifactId>quarkus-jgit</artifactId>
+                <version>${quarkiverse-jgit.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.jgit</groupId>
+                <artifactId>quarkus-jgit-deployment</artifactId>
+                <version>${quarkiverse-jgit.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.jsch</groupId>
+                <artifactId>quarkus-jsch</artifactId>
+                <version>${quarkiverse-jsch.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.jsch</groupId>
+                <artifactId>quarkus-jsch-deployment</artifactId>
+                <version>${quarkiverse-jsch.version}</version>
             </dependency>
             <dependency>
                 <groupId>io.quarkiverse.minio</groupId>
@@ -5995,6 +6015,16 @@
                 <version>${quarkiverse-minio.version}</version>
             </dependency>
             <dependency>
+                <groupId>io.quarkiverse.tika</groupId>
+                <artifactId>quarkus-tika</artifactId>
+                <version>${quarkiverse-tika.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.quarkiverse.tika</groupId>
+                <artifactId>quarkus-tika-deployment</artifactId>
+                <version>${quarkiverse-tika.version}</version>
+            </dependency>
+            <dependency>
                 <groupId>io.smallrye.reactive</groupId>
                 <artifactId>smallrye-reactive-messaging-camel</artifactId>
                 <version>${smallrye.reactive.messaging.camel.version}</version>
@@ -6029,6 +6059,18 @@
                 <artifactId>json-smart</artifactId>
                 <version>${json-smart.version}</version>
             </dependency>
+            <!-- TODO: Remove this https://github.com/apache/camel-quarkus/issues/3366 -->
+            <dependency>
+                <groupId>software.amazon.awssdk</groupId>
+                <artifactId>apache-client</artifactId>
+                <version>${awssdk.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>commons-logging</groupId>
+                        <artifactId>commons-logging</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
             <dependency>
                 <groupId>org.antlr</groupId>
                 <artifactId>antlr</artifactId>

[camel-quarkus] 02/02: Disable vertx-kafka integration tests and native build due to #3358

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

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

commit 95f3324767c0f192ed407f9d25e6884fe495029d
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Dec 6 16:21:36 2021 +0000

    Disable vertx-kafka integration tests and native build due to #3358
---
 integration-tests/vertx-kafka/pom.xml                                   | 2 ++
 .../org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java | 2 ++
 .../apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java   | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/integration-tests/vertx-kafka/pom.xml b/integration-tests/vertx-kafka/pom.xml
index 978b597..b7c9bee 100644
--- a/integration-tests/vertx-kafka/pom.xml
+++ b/integration-tests/vertx-kafka/pom.xml
@@ -59,6 +59,7 @@
     </dependencies>
 
     <profiles>
+        <!-- TODO: https://github.com/apache/camel-quarkus/issues/3358
         <profile>
             <id>native</id>
             <activation>
@@ -86,6 +87,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java
index b969afc..c98665c 100644
--- a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java
+++ b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java
@@ -16,9 +16,11 @@
  */
 package org.apache.camel.quarkus.component.vertx.kafka.it;
 
+import io.quarkus.test.junit.DisabledOnNativeImage;
 import io.quarkus.test.junit.NativeImageTest;
 
 @NativeImageTest
+@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/3358")
 class VertxKafkaIT extends VertxKafkaTest {
 
 }
diff --git a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java
index 28c459f..ebf11f1 100644
--- a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java
+++ b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java
@@ -20,12 +20,14 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.CoreMatchers.is;
 
 @QuarkusTest
 @QuarkusTestResource(VertxKafkaTestResource.class)
+@Disabled("https://github.com/apache/camel-quarkus/issues/3358")
 class VertxKafkaTest {
 
     @Test