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

acosentino pushed a commit to branch camel-3.11.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.11.x by this push:
     new ff9e335  (chores) camel-grpc: fix version conflict causing CI failures
ff9e335 is described below

commit ff9e3357860375b2800e65631ee7136d0d74eb32
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Fri Oct 15 13:34:11 2021 +0200

    (chores) camel-grpc: fix version conflict causing CI failures
    
    The reordering of the Netty dependencies from
    b8ca24ee853275ad5cf9fa0ca61fa5e72a9b891b is bringing a newer version of
    the io.netty:netty-tcnative-boringssl-static (2.0.44.Final). Forcing the
    camel-grpc to use the older one (2.0.39.Final) causes a failure because the 
class
    AsyncSSLPrivateKeyMethod is not present on the older one.
    
    This causes the GrpcProducerSecurityTest test to fail.
---
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 9b68709..3166888 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -235,7 +235,7 @@
     <grpc-google-auth-library-version>0.26.0</grpc-google-auth-library-version>
     <grpc-guava-version>28.2-jre</grpc-guava-version>
     <grpc-java-jwt-version>3.16.0</grpc-java-jwt-version>
-    
<grpc-netty-tcnative-boringssl-static-version>2.0.39.Final</grpc-netty-tcnative-boringssl-static-version>
+    
<grpc-netty-tcnative-boringssl-static-version>2.0.44.Final</grpc-netty-tcnative-boringssl-static-version>
     <grpc-version>1.38.0</grpc-version>
     <gson-version>2.8.7</gson-version>
     <guava-eventbus-version>28.2-jre</guava-eventbus-version>
diff --git a/parent/pom.xml b/parent/pom.xml
index 0d8063d..56c9539 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -215,7 +215,7 @@
         
<grpc-google-auth-library-version>0.26.0</grpc-google-auth-library-version>
         <grpc-guava-version>28.2-jre</grpc-guava-version>
         <grpc-java-jwt-version>3.16.0</grpc-java-jwt-version>
-        
<grpc-netty-tcnative-boringssl-static-version>2.0.39.Final</grpc-netty-tcnative-boringssl-static-version>
+        
<grpc-netty-tcnative-boringssl-static-version>2.0.44.Final</grpc-netty-tcnative-boringssl-static-version>
         <gson-version>2.8.7</gson-version>
         <guava-eventbus-version>28.2-jre</guava-eventbus-version>
         <guice3-version>3.0</guice3-version>

Reply via email to