Thread: [Patchanim-commit] SF.net SVN: patchanim: [6] trunk/patchanim/build.xml
Brought to you by:
dbrosius
From: <dbr...@us...> - 2008-01-25 04:43:39
|
Revision: 6 http://patchanim.svn.sourceforge.net/patchanim/?rev=6&view=rev Author: dbrosius Date: 2008-01-24 20:43:08 -0800 (Thu, 24 Jan 2008) Log Message: ----------- initial ant project build file Added Paths: ----------- trunk/patchanim/build.xml Added: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml (rev 0) +++ trunk/patchanim/build.xml 2008-01-25 04:43:08 UTC (rev 6) @@ -0,0 +1,131 @@ +<!-- +/* + * patchanim - Bezier Blend Batch Animation Builder + * Copyright (C) 2008 Dave Brosius + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + --> + +<project name="patchanim" default="jar"> + + <property file="build.properties"/> + + <property name="src.dir" value="${basedir}/src"/> + <property name="classes.dir" value="${basedir}/classes"/> + <property name="htdocs.dir" value="${basedir}/htdocs"/> + <property name="javadoc.dir" value="${htdocs.dir}/javadoc"/> + <property name="javac.source" value="1.5"/> + <property name="javac.target" value="1.5"/> + <property name="javac.deprecation" value="on"/> + <property name="javac.debug" value="on"/> + + <property name="patchanim.version" value="0.1.0"/> + + <target name="clean" description="removes all generated collateral"> + <delete dir="${classes.dir}"/> + <delete dir="${javadoc.dir}"/> + <delete file="${basedir}/patchanim-${patchanim.version}.jar"/> + <delete file="${basedir}/patchanim-src-${patchanim.version}.zip"/> + </target> + + <target name="-init" description="prepares repository for a build"> + <mkdir dir="${classes.dir}"/> + <mkdir dir="${javadoc.dir}"/> + <path id="patchanim.classpath"> + </path> + </target> + + <target name="compile" depends="-init" description="compiles java files"> + <javac srcdir="${src.dir}" + destdir="${classes.dir}" + source="${javac.source}" + target="${javac.target}" + deprecation="${javac.deprecation}" + debug="${javac.debug}"> + <classpath refid="patchanim.classpath"/> + </javac> + </target> + + <target name="resources" depends="-init" description="copies required files"> + <copy todir="${classes.dir}"> + <fileset dir="${src.dir}"> + <include name="**/*.properties"/> + </fileset> + </copy> + </target> + + <target name="jar" depends="compile, resources" description="produces the patchanim jar file"> + <jar destfile="${basedir}/patchanim-${patchanim.version}.jar"> + <fileset dir="${classes.dir}"> + <include name="**/*.class"/> + <include name="**/*.properties"/> + </fileset> + <fileset dir="${basedir}"> + <include name="license.txt"/> + </fileset> + <manifest> + <attribute name="patchanim-version" value="${patchanim.version}"/> + <attribute name="Main-Class" value="com.mebigfatguy.patchanim.main.PatchMain"/> + </manifest> + </jar> + </target> + + <target name="srczip" description="builds the source distribution zip file"> + <zip destfile="${basedir}/patchanim-src-${patchanim.version}.zip" basedir="${basedir}"> + <fileset dir="${basedir}"> + <include name="**/*.java"/> + <include name="**/*.properties"/> + <include name="**/*.property"/> + </fileset> + </zip> + </target> + + <target name="javadoc" depends="-init" description="build the javadoc for the project"> + <javadoc packagenames="com.mebigfatguy.*" + sourcepath="${src.dir}" + classpathref="patchanim.classpath" + destdir="${javadoc.dir}" + windowtitle="patchanim api"> + <doctitle><![CDATA[<h1>patchanim javadoc</h1>]]></doctitle> + <bottom><![CDATA[<i>Copyright © 2008 MeBigFatGuy.com. All Rights Reserved.</i>]]></bottom> + </javadoc> + </target> + + <target name="test" depends="-init, compile, resources" description="runs unit tests"> + <path id="patchanimtest.classpath"> + <pathelement location="${classes.dir}"/> + </path> + <junit + printsummary="true" + haltonfailure="true" + haltonerror="true" + showoutput="true" + fork="true"> + + <classpath><path refid="patchanimtest.classpath"/></classpath> + <batchtest fork="true"> + <fileset dir="${classes.dir}" + excludes="test/*$*" + includes="test/*"/> + </batchtest> + </junit> + </target> + + <target name="build" depends="clean, -init, compile, resources, test, jar" description="builds the patchanim jar"/> + + <target name="release" depends="build, srczip, javadoc" description="prepares everything for a release"/> + +</project> \ No newline at end of file Property changes on: trunk/patchanim/build.xml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-01-25 05:23:48
|
Revision: 11 http://patchanim.svn.sourceforge.net/patchanim/?rev=11&view=rev Author: dbrosius Date: 2008-01-24 21:23:54 -0800 (Thu, 24 Jan 2008) Log Message: ----------- add jar signing to jar task Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-01-25 05:16:39 UTC (rev 10) +++ trunk/patchanim/build.xml 2008-01-25 05:23:54 UTC (rev 11) @@ -80,7 +80,14 @@ <attribute name="patchanim-version" value="${patchanim.version}"/> <attribute name="Main-Class" value="com.mebigfatguy.patchanim.main.PatchMain"/> </manifest> - </jar> + </jar> + <input message="Enter keystore password" addproperty="pass"/> + <signjar jar="${basedir}/patchanim-${patchanim.version}.jar" + keystore="patchanim.store" + alias="patchanim" + keypass="${pass}" + storepass="${pass}"/> + </target> <target name="srczip" description="builds the source distribution zip file"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-01-30 02:58:29
|
Revision: 69 http://patchanim.svn.sourceforge.net/patchanim/?rev=69&view=rev Author: dbrosius Date: 2008-01-29 18:55:45 -0800 (Tue, 29 Jan 2008) Log Message: ----------- get ready for the 0.2.0 release Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-01-30 02:55:22 UTC (rev 68) +++ trunk/patchanim/build.xml 2008-01-30 02:55:45 UTC (rev 69) @@ -32,7 +32,7 @@ <property name="javac.deprecation" value="on"/> <property name="javac.debug" value="on"/> - <property name="patchanim.version" value="0.1.0"/> + <property name="patchanim.version" value="0.2.0"/> <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-03 01:40:20
|
Revision: 94 http://patchanim.svn.sourceforge.net/patchanim/?rev=94&view=rev Author: dbrosius Date: 2008-02-02 17:40:24 -0800 (Sat, 02 Feb 2008) Log Message: ----------- make sure to jar up the gifs Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-03 01:32:12 UTC (rev 93) +++ trunk/patchanim/build.xml 2008-02-03 01:40:24 UTC (rev 94) @@ -73,6 +73,7 @@ <fileset dir="${classes.dir}"> <include name="**/*.class"/> <include name="**/*.properties"/> + <include name="**/*.gif"/> </fileset> <fileset dir="${basedir}"> <include name="license.txt"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-09 05:59:36
|
Revision: 111 http://patchanim.svn.sourceforge.net/patchanim/?rev=111&view=rev Author: dbrosius Date: 2008-02-08 21:59:37 -0800 (Fri, 08 Feb 2008) Log Message: ----------- update build file for jar files Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-09 05:53:58 UTC (rev 110) +++ trunk/patchanim/build.xml 2008-02-09 05:59:37 UTC (rev 111) @@ -25,6 +25,7 @@ <property name="src.dir" value="${basedir}/src"/> <property name="classes.dir" value="${basedir}/classes"/> + <property name="lib.dir" value="${basedir}/lib"/> <property name="htdocs.dir" value="${basedir}/htdocs"/> <property name="javadoc.dir" value="${htdocs.dir}/javadoc"/> <property name="javac.source" value="1.5"/> @@ -45,6 +46,10 @@ <mkdir dir="${classes.dir}"/> <mkdir dir="${javadoc.dir}"/> <path id="patchanim.classpath"> + <pathelement location="${lib.dir}/xml-apis.jar"/> + <pathelement location="${lib.dir}/xalan.jar"/> + <pathelement location="${lib.dir}/xercesImpl.jar"/> + <pathelement location="${lib.dir}/serializer.jar"/> </path> </target> @@ -81,6 +86,7 @@ <manifest> <attribute name="patchanim-version" value="${patchanim.version}"/> <attribute name="Main-Class" value="com.mebigfatguy.patchanim.main.PatchMain"/> + <attribute name="Class-Path" value="xml-apis.jar xalan.jar xercesImpl.jar serializer.jar"/> </manifest> </jar> <input message="Enter keystore password" addproperty="pass"/> @@ -98,6 +104,7 @@ <include name="**/*.java"/> <include name="**/*.properties"/> <include name="**/*.property"/> + <include name="${lib.dir}/*.jar"/> </fileset> </zip> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-09 06:15:17
|
Revision: 115 http://patchanim.svn.sourceforge.net/patchanim/?rev=115&view=rev Author: dbrosius Date: 2008-02-08 22:15:15 -0800 (Fri, 08 Feb 2008) Log Message: ----------- make sure xsl and xsd get copied to jars, src, etc Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-09 06:12:58 UTC (rev 114) +++ trunk/patchanim/build.xml 2008-02-09 06:15:15 UTC (rev 115) @@ -69,6 +69,8 @@ <fileset dir="${src.dir}"> <include name="**/*.properties"/> <include name="**/*.gif"/> + <include name="**/*.xsd"/> + <include name="**/*.xsl"/> </fileset> </copy> </target> @@ -79,6 +81,8 @@ <include name="**/*.class"/> <include name="**/*.properties"/> <include name="**/*.gif"/> + <include name="**/*.xsd"/> + <include name="**/*.xsl"/> </fileset> <fileset dir="${basedir}"> <include name="license.txt"/> @@ -103,7 +107,9 @@ <fileset dir="${basedir}"> <include name="**/*.java"/> <include name="**/*.properties"/> - <include name="**/*.property"/> + <include name="**/*.gif"/> + <include name="**/*.xsd"/> + <include name="**/*.xsl"/> <include name="${lib.dir}/*.jar"/> </fileset> </zip> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-09 06:33:30
|
Revision: 116 http://patchanim.svn.sourceforge.net/patchanim/?rev=116&view=rev Author: dbrosius Date: 2008-02-08 22:33:33 -0800 (Fri, 08 Feb 2008) Log Message: ----------- sign the other jars Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-09 06:15:15 UTC (rev 115) +++ trunk/patchanim/build.xml 2008-02-09 06:33:33 UTC (rev 116) @@ -27,6 +27,7 @@ <property name="classes.dir" value="${basedir}/classes"/> <property name="lib.dir" value="${basedir}/lib"/> <property name="htdocs.dir" value="${basedir}/htdocs"/> + <property name="jnlp.dir" value="${htdocs.dir}/jnlp"/> <property name="javadoc.dir" value="${htdocs.dir}/javadoc"/> <property name="javac.source" value="1.5"/> <property name="javac.target" value="1.5"/> @@ -38,8 +39,8 @@ <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> <delete dir="${javadoc.dir}"/> - <delete file="${basedir}/patchanim-${patchanim.version}.jar"/> - <delete file="${basedir}/patchanim-src-${patchanim.version}.zip"/> + <delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/> + <delete file="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"/> </target> <target name="-init" description="prepares repository for a build"> @@ -76,7 +77,7 @@ </target> <target name="jar" depends="compile, resources" description="produces the patchanim jar file"> - <jar destfile="${basedir}/patchanim-${patchanim.version}.jar"> + <jar destfile="${jnlp.dir}/patchanim-${patchanim.version}.jar"> <fileset dir="${classes.dir}"> <include name="**/*.class"/> <include name="**/*.properties"/> @@ -92,14 +93,7 @@ <attribute name="Main-Class" value="com.mebigfatguy.patchanim.main.PatchMain"/> <attribute name="Class-Path" value="xml-apis.jar xalan.jar xercesImpl.jar serializer.jar"/> </manifest> - </jar> - <input message="Enter keystore password" addproperty="pass"/> - <signjar jar="${basedir}/patchanim-${patchanim.version}.jar" - keystore="patchanim.store" - alias="patchanim" - keypass="${pass}" - storepass="${pass}"/> - + </jar> </target> <target name="srczip" description="builds the source distribution zip file"> @@ -148,6 +142,26 @@ <target name="build" depends="clean, -init, compile, resources, test, jar" description="builds the patchanim jar"/> - <target name="release" depends="build, srczip, javadoc" description="prepares everything for a release"/> + <target name="jnlp" description="copy jars to jnlp directory"> + <copy todir="${jnlp.dir}"> + <fileset dir="${lib.dir}"> + <include name="*.jar"/> + </fileset> + <fileset dir="${basedir}"> + <include name="*.jar"/> + </fileset> + </copy> + <input message="Enter keystore password" addproperty="pass"/> + <signjar keystore="patchanim.store" + alias="patchanim" + keypass="${pass}" + storepass="${pass}"> + <fileset dir="${jnlp.dir}"> + <include name="*.jar"/> + </fileset> + </signjar> + </target> + + <target name="release" depends="build, jnlp, srczip, javadoc" description="prepares everything for a release"/> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-09 06:40:29
|
Revision: 117 http://patchanim.svn.sourceforge.net/patchanim/?rev=117&view=rev Author: dbrosius Date: 2008-02-08 22:40:32 -0800 (Fri, 08 Feb 2008) Log Message: ----------- fix srczip Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-09 06:33:33 UTC (rev 116) +++ trunk/patchanim/build.xml 2008-02-09 06:40:32 UTC (rev 117) @@ -97,14 +97,14 @@ </target> <target name="srczip" description="builds the source distribution zip file"> - <zip destfile="${basedir}/patchanim-src-${patchanim.version}.zip" basedir="${basedir}"> + <zip destfile="${jnlp.dir}/patchanim-src-${patchanim.version}.zip" basedir="${basedir}"> <fileset dir="${basedir}"> - <include name="**/*.java"/> - <include name="**/*.properties"/> - <include name="**/*.gif"/> - <include name="**/*.xsd"/> - <include name="**/*.xsl"/> - <include name="${lib.dir}/*.jar"/> + <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"/> </fileset> </zip> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <dbr...@us...> - 2008-02-10 23:31:44
|
Revision: 158 http://patchanim.svn.sourceforge.net/patchanim/?rev=158&view=rev Author: dbrosius Date: 2008-02-10 15:31:49 -0800 (Sun, 10 Feb 2008) Log Message: ----------- zip up all the jars into a bin.zip Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-10 23:31:07 UTC (rev 157) +++ trunk/patchanim/build.xml 2008-02-10 23:31:49 UTC (rev 158) @@ -41,6 +41,7 @@ <delete dir="${javadoc.dir}"/> <delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/> <delete file="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"/> + <delete file="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip"/> </target> <target name="-init" description="prepares repository for a build"> @@ -157,6 +158,12 @@ </signjar> </target> - <target name="release" depends="build, jnlp, srczip, javadoc" description="prepares everything for a release"/> + <target name="binzip" depends="build" description="zips up all jars"> + <zip destfile="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip" + basedir="${jnlp.dir}" + includes="patchanim-${patchanim.version}.jar xml-apis.jar xercesImpl.jar xalan.jar serializer.jar"/> + </target> + + <target name="release" depends="build, jnlp, binzip, srczip, javadoc" description="prepares everything for a release"/> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-10 23:53:22
|
Revision: 161 http://patchanim.svn.sourceforge.net/patchanim/?rev=161&view=rev Author: dbrosius Date: 2008-02-10 15:53:25 -0800 (Sun, 10 Feb 2008) Log Message: ----------- build the zips to the root dir Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-10 23:50:04 UTC (rev 160) +++ trunk/patchanim/build.xml 2008-02-10 23:53:25 UTC (rev 161) @@ -40,8 +40,8 @@ <delete dir="${classes.dir}"/> <delete dir="${javadoc.dir}"/> <delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/> - <delete file="${jnlp.dir}/patchanim-src-${patchanim.version}.zip"/> - <delete file="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip"/> + <delete file="${basedir}/patchanim-src-${patchanim.version}.zip"/> + <delete file="${basedir}/patchanim-bin-${patchanim.version}.zip"/> </target> <target name="-init" description="prepares repository for a build"> @@ -100,7 +100,7 @@ </target> <target name="srczip" description="builds the source distribution zip file"> - <zip destfile="${jnlp.dir}/patchanim-src-${patchanim.version}.zip" + <zip destfile="${basedir}/patchanim-src-${patchanim.version}.zip" basedir="${basedir}" includes="src/**/*.java, src/**/*.properties, src/**/*.gif, src/**/*.xsd, src/**/*.xsl, lib/**/*.jar, *.txt"/> </target> @@ -159,7 +159,7 @@ </target> <target name="binzip" depends="build" description="zips up all jars"> - <zip destfile="${jnlp.dir}/patchanim-bin-${patchanim.version}.zip" + <zip destfile="${basedir}/patchanim-bin-${patchanim.version}.zip" basedir="${jnlp.dir}" includes="patchanim-${patchanim.version}.jar xml-apis.jar xercesImpl.jar xalan.jar serializer.jar"/> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-11 00:03:05
|
Revision: 162 http://patchanim.svn.sourceforge.net/patchanim/?rev=162&view=rev Author: dbrosius Date: 2008-02-10 16:03:09 -0800 (Sun, 10 Feb 2008) Log Message: ----------- delete old versions of patchanim jars and zips Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-10 23:53:25 UTC (rev 161) +++ trunk/patchanim/build.xml 2008-02-11 00:03:09 UTC (rev 162) @@ -39,9 +39,12 @@ <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> <delete dir="${javadoc.dir}"/> - <delete file="${jnlp.dir}/patchanim-${patchanim.version}.jar"/> - <delete file="${basedir}/patchanim-src-${patchanim.version}.zip"/> - <delete file="${basedir}/patchanim-bin-${patchanim.version}.zip"/> + <delete> + <fileset dir="${jnlp.dir}" includes="patchanim*.jar"/> + </delete> + <delete> + <fileset dir="${basedir}" includes="*.zip"/> + </delete> </target> <target name="-init" description="prepares repository for a build"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-11 00:16:43
|
Revision: 164 http://patchanim.svn.sourceforge.net/patchanim/?rev=164&view=rev Author: dbrosius Date: 2008-02-10 16:16:49 -0800 (Sun, 10 Feb 2008) Log Message: ----------- copy the jnlp to the deploy directory and inject the version automagically Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-11 00:16:20 UTC (rev 163) +++ trunk/patchanim/build.xml 2008-02-11 00:16:49 UTC (rev 164) @@ -26,6 +26,7 @@ <property name="src.dir" value="${basedir}/src"/> <property name="classes.dir" value="${basedir}/classes"/> <property name="lib.dir" value="${basedir}/lib"/> + <property name="etc.dir" value="${basedir}/etc"/> <property name="htdocs.dir" value="${basedir}/htdocs"/> <property name="jnlp.dir" value="${htdocs.dir}/jnlp"/> <property name="javadoc.dir" value="${htdocs.dir}/javadoc"/> @@ -40,7 +41,10 @@ <delete dir="${classes.dir}"/> <delete dir="${javadoc.dir}"/> <delete> - <fileset dir="${jnlp.dir}" includes="patchanim*.jar"/> + <fileset dir="${jnlp.dir}"> + <include name="patchanim*.jar"/> + <include name="*.jnlp"/> + </fileset> </delete> <delete> <fileset dir="${basedir}" includes="*.zip"/> @@ -79,6 +83,18 @@ </fileset> </copy> <echo message="${patchanim.version}" file="${classes.dir}/com/mebigfatguy/patchanim/io/Version.txt"/> + <copy todir="${jnlp.dir}"> + <fileset dir="${etc.dir}"> + <include name="*.jnlp"/> + </fileset> + </copy> + <replaceregexp byline="true"> + <regexp pattern="\$VERSION"/> + <substitution expression="${patchanim.version}"/> + <fileset dir="${jnlp.dir}"> + <include name="*.jnlp"/> + </fileset> + </replaceregexp> </target> <target name="jar" depends="compile, resources" description="produces the patchanim jar file"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-19 04:49:18
|
Revision: 222 http://patchanim.svn.sourceforge.net/patchanim/?rev=222&view=rev Author: dbrosius Date: 2008-02-18 20:49:21 -0800 (Mon, 18 Feb 2008) Log Message: ----------- move to version 1.0.0 Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-18 19:19:27 UTC (rev 221) +++ trunk/patchanim/build.xml 2008-02-19 04:49:21 UTC (rev 222) @@ -35,7 +35,7 @@ <property name="javac.deprecation" value="on"/> <property name="javac.debug" value="on"/> - <property name="patchanim.version" value="0.7.0"/> + <property name="patchanim.version" value="1.0.0"/> <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-02-24 02:50:10
|
Revision: 227 http://patchanim.svn.sourceforge.net/patchanim/?rev=227&view=rev Author: dbrosius Date: 2008-02-23 18:50:05 -0800 (Sat, 23 Feb 2008) Log Message: ----------- bump to version 1.1.0 Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-02-24 02:49:10 UTC (rev 226) +++ trunk/patchanim/build.xml 2008-02-24 02:50:05 UTC (rev 227) @@ -35,7 +35,7 @@ <property name="javac.deprecation" value="on"/> <property name="javac.debug" value="on"/> - <property name="patchanim.version" value="1.0.0"/> + <property name="patchanim.version" value="1.1.0"/> <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dbr...@us...> - 2008-05-31 18:00:27
|
Revision: 240 http://patchanim.svn.sourceforge.net/patchanim/?rev=240&view=rev Author: dbrosius Date: 2008-05-31 11:00:35 -0700 (Sat, 31 May 2008) Log Message: ----------- update to 1.2 for release Modified Paths: -------------- trunk/patchanim/build.xml Modified: trunk/patchanim/build.xml =================================================================== --- trunk/patchanim/build.xml 2008-05-31 17:59:32 UTC (rev 239) +++ trunk/patchanim/build.xml 2008-05-31 18:00:35 UTC (rev 240) @@ -35,7 +35,7 @@ <property name="javac.deprecation" value="on"/> <property name="javac.debug" value="on"/> - <property name="patchanim.version" value="1.1.0"/> + <property name="patchanim.version" value="1.2.0"/> <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |