You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2007/09/13 22:09:56 UTC

svn commit: r575425 - /gump/mvnrepo/trunk/build.xml

Author: bodewig
Date: Thu Sep 13 13:09:56 2007
New Revision: 575425

URL: http://svn.apache.org/viewvc?rev=575425&view=rev
Log:
No need to re-create jar all the time

Modified:
    gump/mvnrepo/trunk/build.xml

Modified: gump/mvnrepo/trunk/build.xml
URL: http://svn.apache.org/viewvc/gump/mvnrepo/trunk/build.xml?rev=575425&r1=575424&r2=575425&view=diff
==============================================================================
--- gump/mvnrepo/trunk/build.xml (original)
+++ gump/mvnrepo/trunk/build.xml Thu Sep 13 13:09:56 2007
@@ -22,11 +22,10 @@
   </target>
 
   <target name="jar" depends="compile">
-    <delete file="${target.jar}" quiet="true"/>
     <manifestclasspath property="manifest.classpath"
                        jarfile="${target.jar}">
       <classpath>
-        <fileset dir="lib"/>
+        <fileset dir="lib" excludes="repoproxy.jar"/>
       </classpath>
     </manifestclasspath>
     <jar destfile="${target.jar}">