Correctly include native modules

Motivation:

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

Modifications:

Add native modules.

Result:

Fixes [#6738]
This commit is contained in:
Norman Maurer 2017-05-13 00:01:01 +02:00
parent f20063d26b
commit 8811041cc6
1 changed files with 18 additions and 2 deletions

View File

@ -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>