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 2024/01/08 10:57:34 UTC

(camel-quarkus) 02/03: Add support for s390x architecture to gRPC codegen

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

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

commit 4f60123f59daceee209962b485c940cbf703a8e8
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Jan 8 08:33:59 2024 +0000

    Add support for s390x architecture to gRPC codegen
    
    Fixes #5639
---
 extensions/grpc/codegen/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/extensions/grpc/codegen/pom.xml b/extensions/grpc/codegen/pom.xml
index 86465ce855..44f7767f9b 100644
--- a/extensions/grpc/codegen/pom.xml
+++ b/extensions/grpc/codegen/pom.xml
@@ -76,6 +76,12 @@
             <classifier>linux-ppcle_64</classifier>
             <type>exe</type>
         </dependency>
+        <dependency>
+            <groupId>com.google.protobuf</groupId>
+            <artifactId>protoc</artifactId>
+            <classifier>linux-s390_64</classifier>
+            <type>exe</type>
+        </dependency>
         <dependency>
             <groupId>com.google.protobuf</groupId>
             <artifactId>protoc</artifactId>
@@ -124,6 +130,12 @@
             <classifier>linux-ppcle_64</classifier>
             <type>exe</type>
         </dependency>
+        <dependency>
+            <groupId>io.grpc</groupId>
+            <artifactId>protoc-gen-grpc-java</artifactId>
+            <classifier>linux-s390_64</classifier>
+            <type>exe</type>
+        </dependency>
         <dependency>
             <groupId>io.grpc</groupId>
             <artifactId>protoc-gen-grpc-java</artifactId>