[Patchanim-commit] SF.net SVN: patchanim: [111] trunk/patchanim/build.xml
Brought to you by:
dbrosius
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. |