Skip to content

Commit

Permalink
Change netty-native-epoll classifier to work on aarch
Browse files Browse the repository at this point in the history
  • Loading branch information
mocenas authored and mjurc committed Oct 14, 2024
1 parent cbae4a0 commit d947f8a
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion http/http-advanced/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<artifactId>http-advanced</artifactId>
<packaging>jar</packaging>
<name>Quarkus QE TS: HTTP: advanced</name>
<properties>
<netty-transport-native-epoll.classifier>linux-x86_64</netty-transport-native-epoll.classifier>
</properties>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -58,7 +61,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<classifier>linux-x86_64</classifier>
<classifier>${netty-transport-native-epoll.classifier}</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
Expand Down Expand Up @@ -91,4 +94,17 @@
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>aarch64</id>
<activation>
<property>
<name>aarch64</name>
</property>
</activation>
<properties>
<netty-transport-native-epoll.classifier>linux-aarch_64</netty-transport-native-epoll.classifier>
</properties>
</profile>
</profiles>
</project>

0 comments on commit d947f8a

Please sign in to comment.