Update of /cvsroot/hibernate/HibernateExt/tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14961
Modified Files:
build.xml
Log Message:
build of jar with tests for usage in eclipse testing
Index: build.xml
===================================================================
RCS file: /cvsroot/hibernate/HibernateExt/tools/build.xml,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- build.xml 6 Feb 2006 09:08:09 -0000 1.28
+++ build.xml 8 Feb 2006 07:59:45 -0000 1.29
@@ -48,6 +48,27 @@
</copy>
</target>
+ <target name="compiletest" depends="common-build.compiletest">
+ <copy todir="${testclasses.dir}">
+ <fileset dir="src/test">
+ <exclude name="**/*.java"/>
+ </fileset>
+ </copy>
+
+ <copy todir="${testclasses.dir}">
+ <fileset dir="src/testsupport"/>
+ </copy>
+
+ <copy todir="${testclasses.dir}">
+ <fileset dir="src/testoutputdependent"/>
+ </copy>
+ <copy todir="${testclasses.dir}">
+ <fileset dir="${src.dir}" includes="**/*jtidy.properties"/>
+ </copy>
+ </target>
+
+ <target name="dist" depends="jartest,common-build.dist"/>
+
<!-- <target name="genjar" depends="init">
<taskdef resource="genjar.properties" classpath="C:\work\products\GenJar\genjar.jar"/>
|