[Bprocessor-commit] facade build.xml,1.4,1.5 .classpath,1.8,1.9
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2010-12-07 14:43:42
|
Update of /cvsroot/bprocessor/facade In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv4397 Modified Files: build.xml .classpath Log Message: Index: .classpath =================================================================== RCS file: /cvsroot/bprocessor/facade/.classpath,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** .classpath 13 Jul 2010 09:32:46 -0000 1.8 --- .classpath 7 Dec 2010 14:43:34 -0000 1.9 *************** *** 6,9 **** --- 6,10 ---- <classpathentry combineaccessrules="false" kind="src" path="/gui"/> <classpathentry combineaccessrules="false" exported="true" kind="src" path="/model"/> + <classpathentry combineaccessrules="false" kind="src" path="/gl"/> <classpathentry kind="output" path="build"/> </classpath> Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/facade/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 2 Jan 2007 17:27:04 -0000 1.4 --- build.xml 7 Dec 2010 14:43:34 -0000 1.5 *************** *** 9,12 **** --- 9,13 ---- <property name="tools.dir" value="${basedir}/../tools"/> <property name="gui.dir" value="${basedir}/../gui"/> + <property name="gl.dir" value="${basedir}/../gl"/> <property name="build.dir" value="${basedir}/build"/> *************** *** 75,78 **** --- 76,84 ---- </fileset> </copy> + <copy todir="${lib.dir}"> + <fileset dir="${gl.dir}/dist"> + <include name="**/gl*"/> + </fileset> + </copy> <copy todir="${lib.dir}"> <fileset dir="${gui.dir}/dist"> *************** *** 108,111 **** --- 114,118 ---- basedir="${build.dir}" compress="true" + manifest="${conf.dir}/manifest.mf" includes="**/*" excludes="depcache/**"> *************** *** 125,137 **** <target name="dist" depends="checkstyle,jar"> ! <copy todir="${basedir}/../build/dist/plugin"> ! <fileset dir="${dist.dir}"> ! <include name="**/*"/> ! </fileset> ! </copy> ! </target> ! ! <target name="fast" depends="jar"> ! <copy todir="${basedir}/../build/dist/plugin"> <fileset dir="${dist.dir}"> <include name="**/*"/> --- 132,136 ---- <target name="dist" depends="checkstyle,jar"> ! <copy todir="${basedir}/../build/dist/plugins"> <fileset dir="${dist.dir}"> <include name="**/*"/> |