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

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

commit 5f4f7b2052a7ef527b17c22e7f50c818de9564d9
Author: Peter Palaga <ppal...@redhat.com>
AuthorDate: Mon May 18 12:07:03 2020 +0200

    Workaround https://github.com/quarkusio/quarkus/issues/9403
---
 pom.xml          |  2 +-
 poms/bom/pom.xml | 10 ++++++++++
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 6a7b7f2..6d6ff4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,7 +53,7 @@
         <github-api.version>1.111</github-api.version>
         <google-http-client.version>1.22.0</google-http-client.version>
         <guava.version>26.0-jre</guava.version>
-        <grpc.version>1.27.0</grpc.version>
+        <grpc.version>1.29.0</grpc.version><!-- Currently following Quarkus, 
because its gRPC is newer; see also 
https://github.com/quarkusio/quarkus/issues/9403 -->
         <gson.version>2.8.5</gson.version>
         <hapi.version>4.1.0</hapi.version>
         <httpclient.cache.version>4.5.5</httpclient.cache.version>
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index 57c9cb3..beb90e8 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -54,6 +54,16 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+
+            <dependency>
+                <!-- Workaround for 
https://github.com/quarkusio/quarkus/issues/9403 -->
+                <!-- this needs to occur before quarkus-bom to get a higher 
prio -->
+                <groupId>io.grpc</groupId>
+                <artifactId>grpc-bom</artifactId>
+                <version>${grpc.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
             <dependency>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-bom</artifactId>

Reply via email to