[Patchanim-commit] SF.net SVN: patchanim: [126] trunk/patchanim/build.xml
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-02-09 16:41:39
|
Revision: 126
http://patchanim.svn.sourceforge.net/patchanim/?rev=126&view=rev
Author: dbrosius
Date: 2008-02-09 08:41:41 -0800 (Sat, 09 Feb 2008)
Log Message:
-----------
fix srczip target
Modified Paths:
--------------
trunk/patchanim/build.xml
Modified: trunk/patchanim/build.xml
===================================================================
--- trunk/patchanim/build.xml 2008-02-09 16:27:02 UTC (rev 125)
+++ trunk/patchanim/build.xml 2008-02-09 16:41:41 UTC (rev 126)
@@ -99,17 +99,9 @@
</target>
<target name="srczip" description="builds the source distribution zip file">
- <zip destfile="${jnlp.dir}/patchanim-src-${patchanim.version}.zip" basedir="${basedir}">
- <fileset dir="${basedir}">
- <include name="${src.dir}/**/*.java"/>
- <include name="${src.dir}/**/*.properties"/>
- <include name="${src.dir}/**/*.gif"/>
- <include name="${src.dir}/**/*.xsd"/>
- <include name="${src.dir}/**/*.xsl"/>
- <include name="${lib.dir}/**/*.jar"/>
- <include name="*.txt"/>
- </fileset>
- </zip>
+ <zip destfile="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"
+ basedir="${basedir}"
+ includes="src/**/*.java, src/**/*.properties, src/**/*.gif, src/**/*.xsd, src/**/*.xsl, lib/**/*.jar, *.txt"/>
</target>
<target name="javadoc" depends="-init" description="build the javadoc for the project">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|