Add dependency management for missing entries
Motivation: The bom does not provide entries for a number of netty modules, in particular those that are deployed with classifiers. As a result, they can't be used without defining a version. Modifications: Provide dependency management for the missing modules. Result: Fixes [#6852]
This commit is contained in:
parent
b8a418d53d
commit
2af895994d
27
bom/pom.xml
27
bom/pom.xml
@ -136,6 +136,11 @@
|
||||
<artifactId>netty-common</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-dev-tools</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-handler</artifactId>
|
||||
@ -191,12 +196,34 @@
|
||||
<artifactId>netty-transport-native-unix-common</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-transport-unix-common</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
<classifier>linux-x86_64</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-transport-unix-common</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
<classifier>osx-x86_64</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-transport-native-epoll</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-transport-native-epoll</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
<classifier>linux-x86_64</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-transport-native-kqueue</artifactId>
|
||||
<version>4.1.13.Final-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-transport-native-kqueue</artifactId>
|
||||
|
Loading…
Reference in New Issue
Block a user