From: Vincent M. <vm...@us...> - 2001-08-13 06:59:54
|
Update of /cvsroot/mockobjects/mockobjects-java In directory usw-pr-cvs1:/tmp/cvs-serv13337 Modified Files: build.xml Log Message: some reformatting in the dist target. Can we agree on using 4 spaces for tabulations and _not_ tabs as they are different for everyone and makes the code unreadable. Also I would prefer to use the nested elements form instead of attributes as this is now the preferred method in Ant and allows for more flexibility (wildcards, ...) but this is really not that important ... :) Index: build.xml =================================================================== RCS file: /cvsroot/mockobjects/mockobjects-java/build.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** build.xml 2001/08/12 23:01:45 1.9 --- build.xml 2001/08/13 06:59:52 1.10 *************** *** 560,565 **** </zipfileset> <zipfileset dir="${out.doc.dir}" prefix="doc"/> ! <zipfileset dir="${out.dir}" prefix="src" ! includes="${src.name}.zip" /> </zip> --- 560,566 ---- </zipfileset> <zipfileset dir="${out.doc.dir}" prefix="doc"/> ! <zipfileset dir="${out.dir}" prefix="src"> ! <include name="${src.name}.zip"/> ! </zipfileset> </zip> |