Build: Add all netty classes during shading

In order to have access to all codecs and handlers by netty, they
need to be exposed during shading, otherwise only the classes, which
are used by the built are exposed.
This commit is contained in:
Alexander Reelsen 2014-07-07 15:09:36 +02:00
parent f97ff704cf
commit ec92646289
1 changed files with 6 additions and 0 deletions

View File

@ -713,6 +713,12 @@
<exclude>build.properties</exclude>
</excludes>
</filter>
<filter>
<artifact>io.netty:netty</artifact>
<includes>
<include>org/jboss/netty/**</include>
</includes>
</filter>
</filters>
</configuration>
</plugin>