Update of /cvsroot/hibernate/HibernateExt/metadata
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30648/metadata
Modified Files:
build.xml
Log Message:
fix test suite regarding common-build changes
Index: build.xml
===================================================================
RCS file: /cvsroot/hibernate/HibernateExt/metadata/build.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- build.xml 12 Jan 2006 02:07:04 -0000 1.38
+++ build.xml 11 Feb 2006 17:53:40 -0000 1.39
@@ -24,7 +24,7 @@
<import file="${common.dir}/common-build.xml"/>
- <target name="compile" depends="init" description="Compile the Java source code">
+ <target name="compile" depends="init" description="Compile the Java source code">
<available
classname="org.eclipse.core.launcher.Main"
property="build.compiler"
@@ -54,16 +54,16 @@
value="org.eclipse.jdt.core.JDTCompilerAdapter"
classpath="${java.class.path}"/>
<javac
- srcdir="${test.dir}"
- destdir="${classes.dir}"
- classpathref="lib.class.path"
+ destdir="${testclasses.dir}"
+ classpathref="junit.classpath"
debug="${javac.debug}"
optimize="${javac.optimize}"
nowarn="on"
- source="1.5">
- <src path="${src.dir}"/>
+ source="1.5"
+ target="1.5">
+ <src refid="testsrc.path"/>
</javac>
- </target>
+ </target>
<path id="junit.moduleclasspath">
<pathelement location="${src.dir}"/>
|