From: <lan...@us...> - 2003-08-03 21:37:09
|
Update of /cvsroot/webmacro/webmacro In directory sc8-pr-cvs1:/tmp/cvs-serv22502 Modified Files: build.xml Log Message: Final updates allowing for both classic and minimal build styles. Index: build.xml =================================================================== RCS file: /cvsroot/webmacro/webmacro/build.xml,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** build.xml 3 Aug 2003 21:01:48 -0000 1.35 --- build.xml 3 Aug 2003 21:37:06 -0000 1.36 *************** *** 44,48 **** <property name="version" value="2.0b1" /> ! <property name="wm-style" value="classic" /> <!-- can be .minimal to get webmacro.defaults.minimal --> <property name="app.name" value="webmacro" /> <property name="tmpdir" value="tmp" /> --- 44,48 ---- <property name="version" value="2.0b1" /> ! <property name="wm-style" value="classic" /> <!-- can be "minimal" to get webmacro.defaults.minimal into build--> <property name="app.name" value="webmacro" /> <property name="tmpdir" value="tmp" /> *************** *** 126,131 **** <copy todir="${classes}"> <fileset dir="${tmpdir}" includes="**/*.properties" /> - <fileset dir="." includes="WebMacro.defaults.${wm-type}"/> </copy> <touch file="${classes}/WM-VERSION-${version}" /> </target> --- 126,132 ---- <copy todir="${classes}"> <fileset dir="${tmpdir}" includes="**/*.properties" /> </copy> + <copy file="webmacro.defaults.${wm-style}" tofile="${classes}/WebMacro.defaults"/> + <touch file="${classes}/WM-VERSION-${version}" /> </target> *************** *** 204,208 **** <fileset dir="distroot" /> </copy> ! <copy file='WebMacro.defaults' todir='${dist.source}' /> <copy file='build.xml' todir='${dist.source}' /> --- 205,209 ---- <fileset dir="distroot" /> </copy> ! <copy file='WebMacro.defaults.${wm-style}' todir='${dist.source}' /> <copy file='build.xml' todir='${dist.source}' /> |