Author: markt
Date: Fri Mar 22 22:00:30 2013
New Revision: 1460021

URL: http://svn.apache.org/r1460021
Log:
Need additional packages to be in util JAR for websocket

Modified:
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1460021&r1=1460020&r2=1460021&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Fri Mar 22 22:00:30 2013
@@ -315,6 +315,8 @@
   </patternset>
 
   <patternset id="files.tomcat-util">
+    <include name="org/apache/tomcat/util/buf/**" />
+    <include name="org/apache/tomcat/util/codec/**" />
     <include name="org/apache/tomcat/util/file/**" />
     <include name="org/apache/tomcat/util/res/**" />
     <include name="org/apache/tomcat/util/scan/**" />
@@ -358,7 +360,10 @@
     <include name="org/apache/coyote/**" />
     <include name="org/apache/jk/**" />
     <include name="org/apache/tomcat/util/**" />
-    <!-- Exclude the files shared between Catalina & Jasper -->
+    <!-- Exclude the files shared between Catalina & Jasper and/or used by
+         WebSockets -->
+    <exclude name="org/apache/tomcat/util/buf/**" />
+    <exclude name="org/apache/tomcat/util/codec/**" />
     <exclude name="org/apache/tomcat/util/file/**" />
     <exclude name="org/apache/tomcat/util/res/**" />
     <exclude name="org/apache/tomcat/util/scan/**" />



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to