You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2021/02/10 23:32:32 UTC

[camel-quarkus] 02/02: Workaround for #2207

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

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

commit 98669e4874ca4e3004c25e84a3617120089199e1
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Wed Feb 10 21:50:39 2021 +0100

    Workaround for #2207
---
 integration-tests/azure-eventhubs/pom.xml     | 11 +++++++----
 integration-tests/azure-storage-blob/pom.xml  | 11 +++++++----
 integration-tests/azure-storage-queue/pom.xml | 11 +++++++----
 3 files changed, 21 insertions(+), 12 deletions(-)

diff --git a/integration-tests/azure-eventhubs/pom.xml b/integration-tests/azure-eventhubs/pom.xml
index e2276fe..f85884b 100644
--- a/integration-tests/azure-eventhubs/pom.xml
+++ b/integration-tests/azure-eventhubs/pom.xml
@@ -34,6 +34,13 @@
 
     <dependencyManagement>
         <dependencies>
+            <dependency><!-- Workaround for https://github.com/apache/camel-quarkus/issues/2207 -->
+                <groupId>com.fasterxml.jackson</groupId>
+                <artifactId>jackson-bom</artifactId>
+                <version>2.11.3</version>
+                <scope>import</scope>
+                <type>pom</type>
+            </dependency>
             <dependency>
                 <groupId>org.apache.camel.quarkus</groupId>
                 <artifactId>camel-quarkus-bom-test</artifactId>
@@ -104,9 +111,6 @@
         </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>
@@ -136,6 +140,5 @@
             </build>
         </profile>
     </profiles>
-    -->
 
 </project>
diff --git a/integration-tests/azure-storage-blob/pom.xml b/integration-tests/azure-storage-blob/pom.xml
index 2c6d358..4e555c7 100644
--- a/integration-tests/azure-storage-blob/pom.xml
+++ b/integration-tests/azure-storage-blob/pom.xml
@@ -31,6 +31,13 @@
 
     <dependencyManagement>
         <dependencies>
+            <dependency><!-- Workaround for https://github.com/apache/camel-quarkus/issues/2207 -->
+                <groupId>com.fasterxml.jackson</groupId>
+                <artifactId>jackson-bom</artifactId>
+                <version>2.11.3</version>
+                <scope>import</scope>
+                <type>pom</type>
+            </dependency>
             <dependency>
                 <groupId>org.apache.camel.quarkus</groupId>
                 <artifactId>camel-quarkus-bom-test</artifactId>
@@ -84,9 +91,6 @@
         </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>
@@ -116,6 +120,5 @@
             </build>
         </profile>
     </profiles>
-    -->
 
 </project>
diff --git a/integration-tests/azure-storage-queue/pom.xml b/integration-tests/azure-storage-queue/pom.xml
index b4d1b5a..245058a 100644
--- a/integration-tests/azure-storage-queue/pom.xml
+++ b/integration-tests/azure-storage-queue/pom.xml
@@ -31,6 +31,13 @@
 
     <dependencyManagement>
         <dependencies>
+            <dependency><!-- Workaround for https://github.com/apache/camel-quarkus/issues/2207 -->
+                <groupId>com.fasterxml.jackson</groupId>
+                <artifactId>jackson-bom</artifactId>
+                <version>2.11.3</version>
+                <scope>import</scope>
+                <type>pom</type>
+            </dependency>
             <dependency>
                 <groupId>org.apache.camel.quarkus</groupId>
                 <artifactId>camel-quarkus-bom-test</artifactId>
@@ -84,9 +91,6 @@
         </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>
@@ -116,6 +120,5 @@
             </build>
         </profile>
     </profiles>
-    -->
 
 </project>