Update of /cvsroot/bprocessor/facade
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12998
Modified Files:
build.xml .classpath
Log Message:
No need to use two different compile directories in the ant and eclipse, so now it uses build in all modules. That ment making a xml directory for the jaxb generated persistence files when compiling and copying them to build before compiling the rest of the document, and including the xml directory in the eclipse .classpath
Index: .classpath
===================================================================
RCS file: /cvsroot/bprocessor/facade/.classpath,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** .classpath 10 Aug 2006 14:58:17 -0000 1.2
--- .classpath 10 Aug 2006 15:37:34 -0000 1.3
***************
*** 4,7 ****
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/log4j.jar"/>
! <classpathentry kind="output" path="bin"/>
</classpath>
--- 4,7 ----
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/log4j.jar"/>
! <classpathentry kind="output" path="build"/>
</classpath>
Index: build.xml
===================================================================
RCS file: /cvsroot/bprocessor/facade/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.xml 10 Aug 2006 14:04:25 -0000 1.1
--- build.xml 10 Aug 2006 15:37:34 -0000 1.2
***************
*** 101,109 ****
<target name="jar" depends="compile">
<mkdir dir="${dist.dir}"/>
- <copy todir="${build.dir}">
- <fileset dir="${gfx.dir}">
- <include name="**/*"/>
- </fileset>
- </copy>
<jar jarfile="${dist.dir}/${name}.jar"
basedir="${build.dir}"
--- 101,104 ----
|