Skip to content

Commit

Permalink
build: add MacOS native DNS bindings for ARM (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiccoMlt authored Nov 6, 2024
1 parent e41bc89 commit 8348912
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions carapace-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<!-- https://netty.io/wiki/forked-tomcat-native.html#how-to-download-netty-tcnative-boringssl-uber-jar -->
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns-native-macos</artifactId>
<!-- Reactor Netty brings in this x86 version of the native DNS bindings for macOS... -->
<classifier>osx-x86_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns-native-macos</artifactId>
<!-- ...but we also need the ARM version to fully support running on Apple devices -->
<classifier>osx-aarch_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.shredzone.acme4j</groupId>
Expand Down

0 comments on commit 8348912

Please sign in to comment.