1 2 3 4 5 6 7 8 9 10 11 12 13
|
Description: Disables the optional Netty based connection factory until it's updated to work with Netty 4+
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.xml
+++ b/build.xml
@@ -455,6 +455,7 @@
<target name="compile" depends="ivy-retrieve,clover,build-generated">
<javac srcdir="${java.src.dir}" destdir="${build.classes}" includeantruntime="false"
+ excludes="**/Netty*"
target="${javac.target}" source="${javac.source}" debug="on">
<classpath refid="java.classpath"/>
<compilerarg value="-Xlint:all"/>
|