Skip to content

Commit

Permalink
Correctly include native modules
Browse files Browse the repository at this point in the history
Motivation:

We need to include the native modules on the bom to ensure there is no version missmatch.

Modifications:

Add native modules.

Result:

Fixes [netty#6738]
  • Loading branch information
normanmaurer committed May 18, 2017
1 parent f20063d commit 8811041
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,23 @@
<artifactId>netty-all</artifactId>
<version>4.1.12.Final-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-unix-common</artifactId>
<version>4.1.12.Final-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>4.1.12.Final-SNAPSHOT</version>
<classifier>linux-x86_64</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
<version>4.1.12.Final-SNAPSHOT</version>
<classifier>osx-x86_64</classifier>
</dependency>
</dependencies>
</dependencyManagement>

</project>
</project>

0 comments on commit 8811041

Please sign in to comment.