[Bprocessor-commit] bprocessor build.xml,1.1,1.2
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2010-12-07 14:43:39
|
Update of /cvsroot/bprocessor/bprocessor In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv4359 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/bprocessor/build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build.xml 3 Dec 2010 10:12:11 -0000 1.1 --- build.xml 7 Dec 2010 14:43:30 -0000 1.2 *************** *** 94,97 **** --- 94,102 ---- </fileset> </copy> + <copy todir="${lib.dir}"> + <fileset dir="${tools.dir}/jaxb"> + <include name="**/jaxb.jar"/> + </fileset> + </copy> </target> *************** *** 115,118 **** --- 120,134 ---- <metainf dir="${conf.dir}" includes="*.xml"/> </jar> + <copy todir="${dist.dir}"> + <fileset dir="${lib.dir}"> + <include name="log4j.jar"/> + </fileset> + <fileset dir="${lib.dir}"> + <include name="jaxb.jar"/> + </fileset> + <fileset dir="${conf.dir}"> + <include name="log4j.properties"/> + </fileset> + </copy> </target> *************** *** 132,136 **** --- 148,156 ---- <include name="**/*"/> </fileset> + <fileset dir="${conf.dir}"> + <include name="log4j.properties"/> + </fileset> </copy> + </target> |