vert-x3 / vertx-consul-client

Vert.x Consul Client
Apache License 2.0
34 stars 23 forks source link

Cannot build on ARM / M1 machines #89

Closed cescoffier closed 1 year ago

cescoffier commented 1 year ago

The version of protoc hardcoded in the pom.xml file is outdated. This version does not provide ARM64 support.

com.google.protobuf:protoc:exe:osx-aarch_64:3.3.0

We should update to a more recent version which support ARM64 such as:

 <protoc.version>3.21.8</protoc.version>

(from the vertx-grpc project).