You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by cg...@apache.org on 2021/02/28 00:47:43 UTC

[drill] branch master updated: DRILL-7841: Need to exclude or shade netty lib to avoid [WARNING]

This is an automated email from the ASF dual-hosted git repository.

cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new 45b20b5  DRILL-7841: Need to exclude or shade netty lib to avoid [WARNING]
45b20b5 is described below

commit 45b20b5881a846cf70aa55d15b7029336398cb66
Author: Martin Kusnir <mk...@uwaterloo.ca>
AuthorDate: Fri Feb 12 14:05:47 2021 -0500

    DRILL-7841: Need to exclude or shade netty lib to avoid [WARNING]
---
 exec/jdbc-all/pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/exec/jdbc-all/pom.xml b/exec/jdbc-all/pom.xml
index 1caed7b..3257d18 100644
--- a/exec/jdbc-all/pom.xml
+++ b/exec/jdbc-all/pom.xml
@@ -318,6 +318,8 @@
               <exclude>com.beust:*</exclude>
               <exclude>jline:*</exclude>
               <exclude>io.netty:netty:jar:3.7.0.Final</exclude>
+              <exclude>io.netty:netty-transport-native-epoll:*</exclude>
+              <exclude>io.netty:netty-transport-native-unix-common:*</exclude>
               <exclude>org.xerial.snappy:*</exclude>
               <exclude>org.apache.avro:*</exclude>
               <exclude>org.tukaani:*</exclude>