mirror of https://github.com/apache/druid.git
switch to netty-bom instead of individual dependencies (#11356)
This commit is contained in:
parent
561cc71838
commit
3ad6a3d74f
|
@ -318,7 +318,6 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.netty</groupId>
|
<groupId>io.netty</groupId>
|
||||||
<artifactId>netty-transport-native-kqueue</artifactId>
|
<artifactId>netty-transport-native-kqueue</artifactId>
|
||||||
<version>${netty4.version}</version>
|
|
||||||
<classifier>osx-x86_64</classifier>
|
<classifier>osx-x86_64</classifier>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
57
pom.xml
57
pom.xml
|
@ -99,10 +99,10 @@
|
||||||
<log4j.version>2.8.2</log4j.version>
|
<log4j.version>2.8.2</log4j.version>
|
||||||
<mysql.version>5.1.48</mysql.version>
|
<mysql.version>5.1.48</mysql.version>
|
||||||
<netty3.version>3.10.6.Final</netty3.version>
|
<netty3.version>3.10.6.Final</netty3.version>
|
||||||
<resilience4j.version>1.3.1</resilience4j.version>
|
|
||||||
<netty4.version>4.1.63.Final</netty4.version>
|
<netty4.version>4.1.63.Final</netty4.version>
|
||||||
<postgresql.version>42.2.14</postgresql.version>
|
<postgresql.version>42.2.14</postgresql.version>
|
||||||
<protobuf.version>3.11.0</protobuf.version>
|
<protobuf.version>3.11.0</protobuf.version>
|
||||||
|
<resilience4j.version>1.3.1</resilience4j.version>
|
||||||
<slf4j.version>1.7.12</slf4j.version>
|
<slf4j.version>1.7.12</slf4j.version>
|
||||||
<!-- If compiling with different hadoop version also modify default hadoop coordinates in TaskConfig.java -->
|
<!-- If compiling with different hadoop version also modify default hadoop coordinates in TaskConfig.java -->
|
||||||
<hadoop.compile.version>2.8.5</hadoop.compile.version>
|
<hadoop.compile.version>2.8.5</hadoop.compile.version>
|
||||||
|
@ -607,59 +607,10 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.netty</groupId>
|
<groupId>io.netty</groupId>
|
||||||
<artifactId>netty-buffer</artifactId>
|
<artifactId>netty-bom</artifactId>
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-common</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-codec-dns</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-codec-http</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-codec-socks</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-handler</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-handler-proxy</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-resolver</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-resolver-dns</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-transport-native-epoll</artifactId>
|
|
||||||
<classifier>linux-x86_64</classifier>
|
|
||||||
<version>${netty4.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.netty</groupId>
|
|
||||||
<artifactId>netty-transport-native-unix-common</artifactId>
|
|
||||||
<version>${netty4.version}</version>
|
<version>${netty4.version}</version>
|
||||||
|
<scope>import</scope>
|
||||||
|
<type>pom</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>joda-time</groupId>
|
<groupId>joda-time</groupId>
|
||||||
|
|
Loading…
Reference in New Issue