From: Marcus <the...@us...> - 2004-03-22 06:05:56
|
Update of /cvsroot/junk/junk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24870 Modified Files: make.xml Log Message: added automatic manifest generation Index: make.xml =================================================================== RCS file: /cvsroot/junk/junk/make.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** make.xml 21 Mar 2004 19:22:35 -0000 1.2 --- make.xml 22 Mar 2004 05:55:36 -0000 1.3 *************** *** 4,11 **** <target name="init"> <echo message="setting central properties" /> <property name="lib-dir" value="../lib" /> </target> ! <target depends="init, clean-classes" name="compile" description="Compile the classes"> <javac debug="true" deprecation="true" destdir="." srcdir="."> <classpath> --- 4,21 ---- <target name="init"> <echo message="setting central properties" /> + <property name="version" value="0.1 alpha" /> <property name="lib-dir" value="../lib" /> </target> ! <target name="manifest"> ! <manifest file="../../META-INF/MANIFEST.MF"> ! <attribute name="Built-By" value="${user.name}"/> ! <section name="junk"> ! <!--<attribute name="Sealed" value="true"/>--> ! </section> ! </manifest> ! </target> ! ! <target depends="init, clean-classes" name="compile" description="Compile the classes"> <javac debug="true" deprecation="true" destdir="." srcdir="."> <classpath> *************** *** 17,21 **** </target> ! <target depends="init,clean-binary,compile" name="war" description="Create WAR file"> <war basedir="../../." --- 27,31 ---- </target> ! <target depends="init,clean-binary,compile, manifest" name="war" description="Create WAR file"> <war basedir="../../." |