[Bprocessor-commit] kernel .classpath, 1.6, 1.7 .cvsignore, 1.1.1.1, 1.2 build.xml, 1.3, 1.4
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2006-09-06 13:03:33
|
Update of /cvsroot/bprocessor/kernel In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17306 Modified Files: .classpath .cvsignore build.xml Log Message: changed build.xml so that the xml are build to a xml folder so that if eclipse clean are used the xml don't need to be rebuild added xml to .cvsignore and changed the build include lib to xml in .classpath Index: .cvsignore =================================================================== RCS file: /cvsroot/bprocessor/kernel/.cvsignore,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** .cvsignore 27 Jun 2005 09:12:29 -0000 1.1.1.1 --- .cvsignore 6 Sep 2006 13:03:26 -0000 1.2 *************** *** 4,5 **** --- 4,6 ---- *.zip *.tar.bz2 + xml Index: .classpath =================================================================== RCS file: /cvsroot/bprocessor/kernel/.classpath,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** .classpath 30 Aug 2006 10:05:46 -0000 1.6 --- .classpath 6 Sep 2006 13:03:26 -0000 1.7 *************** *** 3,10 **** <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry kind="lib" path="build"/> <classpathentry kind="src" path="/gl"/> <classpathentry kind="src" path="/gui"/> <classpathentry kind="src" path="/model"/> <classpathentry kind="output" path="build"/> </classpath> --- 3,10 ---- <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="src" path="/gl"/> <classpathentry kind="src" path="/gui"/> <classpathentry kind="src" path="/model"/> + <classpathentry kind="lib" path="xml"/> <classpathentry kind="output" path="build"/> </classpath> Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/kernel/build.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build.xml 28 Apr 2006 11:29:02 -0000 1.3 --- build.xml 6 Sep 2006 13:03:26 -0000 1.4 *************** *** 7,11 **** <property name="tools.dir" value="${basedir}/../tools"/> ! <property name="build.dir" value="${basedir}/build"/> <property name="src.dir" value="${basedir}/src"/> <property name="conf.dir" value="${src.dir}/etc"/> --- 7,12 ---- <property name="tools.dir" value="${basedir}/../tools"/> ! <property name="build.dir" value="${basedir}/build"/> ! <property name="xml.dir" value="${basedir}/xml"/> <property name="src.dir" value="${basedir}/src"/> <property name="conf.dir" value="${src.dir}/etc"/> *************** *** 23,27 **** <target name="clean" depends="init"> <delete dir="${build.dir}"/> ! <delete dir="${dist.dir}"/> <delete dir="${doc.api.dir}"/> <delete> --- 24,29 ---- <target name="clean" depends="init"> <delete dir="${build.dir}"/> ! <delete dir="${dist.dir}"/> ! <delete dir="${xml.dir}"/> <delete dir="${doc.api.dir}"/> <delete> *************** *** 43,47 **** <echo message="java.class.path = ${java.class.path}"/> <echo message=""/> ! <mkdir dir="${build.dir}"/> </target> --- 45,50 ---- <echo message="java.class.path = ${java.class.path}"/> <echo message=""/> ! <mkdir dir="${build.dir}"/> ! <mkdir dir="${xml.dir}"/> </target> *************** *** 80,93 **** </taskdef> <xjc schema="${conf.dir}/kernel.xsd" ! target="${build.dir}" package="net.sourceforge.bprocessor.kernel.xml"> <arg value="-nv"/> </xjc> <xjc schema="${conf.dir}/plugin.xsd" ! target="${build.dir}" package="net.sourceforge.bprocessor.kernel.plugin"> <arg value="-nv"/> </xjc> ! <javac srcdir="${build.dir}" destdir="${build.dir}" deprecation="yes" debug="yes" target="1.2" source="1.3" includes="net/**"> --- 83,96 ---- </taskdef> <xjc schema="${conf.dir}/kernel.xsd" ! target="${xml.dir}" package="net.sourceforge.bprocessor.kernel.xml"> <arg value="-nv"/> </xjc> <xjc schema="${conf.dir}/plugin.xsd" ! target="${xml.dir}" package="net.sourceforge.bprocessor.kernel.plugin"> <arg value="-nv"/> </xjc> ! <javac srcdir="${xml.dir}" destdir="${xml.dir}" deprecation="yes" debug="yes" target="1.2" source="1.3" includes="net/**"> *************** *** 97,104 **** </javac> <delete> ! <fileset dir="${build.dir}"> <include name="**/*.java"/> </fileset> </delete> </target> --- 100,112 ---- </javac> <delete> ! <fileset dir="${xml.dir}"> <include name="**/*.java"/> </fileset> </delete> + <copy todir="${build.dir}"> + <fileset dir="${xml.dir}"> + <include name="**/*.class"/> + </fileset> + </copy> </target> |