You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by br...@apache.org on 2010/02/11 00:23:41 UTC

svn commit: r908746 - /incubator/thrift/trunk/lib/java/build.xml

Author: bryanduxbury
Date: Wed Feb 10 23:23:35 2010
New Revision: 908746

URL: http://svn.apache.org/viewvc?rev=908746&view=rev
Log:
don't put all the test cases and generated classes into the jar - reduces size of jar from ~1M to ~200k.

Modified:
    incubator/thrift/trunk/lib/java/build.xml

Modified: incubator/thrift/trunk/lib/java/build.xml
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/java/build.xml?rev=908746&r1=908745&r2=908746&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/java/build.xml (original)
+++ incubator/thrift/trunk/lib/java/build.xml Wed Feb 10 23:23:35 2010
@@ -129,7 +129,7 @@
     <copy file="${thrift.root}/NOTICE" tofile="${build}/META-INF/NOTICE.txt"/>
     <jar jarfile="libthrift.jar">
       <fileset dir="${build}">
-        <include name="**/*.class" />
+        <include name="org/apache/thrift/**/*.class" />
         <include name="META-INF/*.txt" />
       </fileset>
       <fileset dir="src">