Skip to content

Commit

Permalink
create a separate profile to support compatibility between apple sili…
Browse files Browse the repository at this point in the history
…con chip (m1) and netty-tcnative libraries #2043
  • Loading branch information
sokomishalov authored and mp911de committed Mar 16, 2022
1 parent 0838a6b commit b94a891
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -842,8 +842,10 @@
<profiles>

<profile>
<id>linux-aarch64-fedora</id>
<activation>
<os>
<name>linux</name>
<arch>aarch64</arch>
</os>
</activation>
Expand All @@ -852,6 +854,19 @@
</properties>
</profile>

<profile>
<id>apple-silicon</id>
<activation>
<os>
<family>mac</family>
<arch>aarch64</arch>
</os>
</activation>
<properties>
<os.detected.classifier>osx-x86_64</os.detected.classifier>
</properties>
</profile>

<profile>
<id>ci</id>
</profile>
Expand Down

0 comments on commit b94a891

Please sign in to comment.