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

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

commit 9f71abb3ee898a81a2fe79c82fd44174c313c027
Author: Peter Palaga <ppal...@redhat.com>
AuthorDate: Wed May 6 09:27:44 2020 +0200

    Temporary workaround for
    https://github.com/quarkusio/quarkus/issues/9103
---
 integration-tests/mongodb/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/integration-tests/mongodb/pom.xml 
b/integration-tests/mongodb/pom.xml
index a72d0f7..6f192cd 100644
--- a/integration-tests/mongodb/pom.xml
+++ b/integration-tests/mongodb/pom.xml
@@ -30,6 +30,8 @@
     <description>Integration tests for Camel Quarkus MongoDB 
extension</description>
 
     <properties>
+        <jna.version>5.3.1</jna.version>
+
         <!-- mvnd, a.k.a. Maven Daemon: https://github.com/gnodet/mvnd -->
         <!-- The following rule tells mvnd to build the listed deployment 
modules before this module. -->
         <!-- This is important because mvnd builds modules in parallel by 
default. The deployment modules are not -->
@@ -39,6 +41,17 @@
         
<mvnd.builder.rule>camel-quarkus-mongodb-deployment,camel-quarkus-support-policy-deployment</mvnd.builder.rule>
     </properties>
 
+    <dependencyManagement>
+        <dependencies>
+
+            <dependency><!-- Hopefully temporary workaround for 
https://github.com/quarkusio/quarkus/issues/9103 -->
+                <groupId>net.java.dev.jna</groupId>
+                <artifactId>jna</artifactId>
+                <version>${jna.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.camel.quarkus</groupId>

Reply via email to