From 1504abd474efd055e73ae75154f879c11e137465 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Tue, 30 May 2017 21:11:59 +0200 Subject: [PATCH] Correctly exclude netty-tcnative classes from the all jar. Motivation: We need to exclude the netty-tcnative classes from the all jar when building it as otherwise there may be classloader issues. Modifications: Add io/netty/internal/tcnative to the exclude list. Result: Fixes [#6791] --- all/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all/pom.xml b/all/pom.xml index 47e763f50d..d7b0b124eb 100644 --- a/all/pom.xml +++ b/all/pom.xml @@ -551,7 +551,7 @@ unpack-dependencies - io/netty/example/**,META-INF/native/libnetty-tcnative*,META-INF/native/include/**,META-INF/native/**/*.a + io/netty/internal/tcnative/**,io/netty/example/**,META-INF/native/libnetty-tcnative*,META-INF/native/include/**,META-INF/native/**/*.a io/netty/**,META-INF/native/** runtime ${project.groupId}