[hibernate-commits] Hibernate SVN: r20942 - entitymanager/branches/v3_3_2_GA_CP.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue May 17 01:14:51 EDT 2011


Author: stliu
Date: 2011-05-17 01:14:51 -0400 (Tue, 17 May 2011)
New Revision: 20942

Modified:
   entitymanager/branches/v3_3_2_GA_CP/build.xml
Log:
JBPAPP-6541 clean db tables after each test

Modified: entitymanager/branches/v3_3_2_GA_CP/build.xml
===================================================================
--- entitymanager/branches/v3_3_2_GA_CP/build.xml	2011-05-17 05:13:27 UTC (rev 20941)
+++ entitymanager/branches/v3_3_2_GA_CP/build.xml	2011-05-17 05:14:51 UTC (rev 20942)
@@ -26,23 +26,13 @@
     <property name="build.dir" location="build"/>
     <property name="classes.dir" location="${build.dir}/classes"/>
     <property name="testclasses.dir" location="${build.dir}/testclasses"/>   
-	<!-- <property name="dist.target.dir" location="target"/>
-	    <property name="dist.dir" location="${dist.target.dir}/${name}"/> -->
-
     <property name="doc.dir" location="doc"/>
     <property name="doc.api.dir" location="${doc.dir}/api"/>
-
-
      <property name="dist.doc.dir"  location="${build.dir}/doc"/>
     <property name="dist.api.dir"  location="${dist.doc.dir}/api"/>
-
-   <!-- <property name="dist.src.dir" location="${dist.dir}/src"/>
-	<property name="dist.test.dir" location="${dist.dir}/test"/>
-    <property name="dist.lib.dir" location="${dist.dir}/lib"/> -->
     <property name="jar.name" value="${name}"/>
 	<property name="jar.file.name" value="${build.dir}/${jar.name}.jar"/>
     <property name="jartest.file.name" value="${build.dir}/${jar.name}-tests.jar"/>   
-
     <property name="javadoc" value="http://java.sun.com/j2se/1.5.0/docs/api"/>
     <property name="javac.debug" value="on"/>
     <property name="javac.optimize" value="off"/>
@@ -50,21 +40,12 @@
 	<property name="javac.target" value="1.5"/>
     <available property="jpa-present" file="${basedir}/../jpa-api" type="dir"/>
 	<property name="jpa-javadoc.dir" value="${dist.doc.dir}/jpa-api"/>
-
-
 	<!-- set Hibernate core related properties -->
     <property name="hibernate-core.home" location="../core"/>
     <property name="hibernate-core.jar" location="${hibernate-core.home}/build/hibernate3.jar"/>
     <property name="hibernate-core.lib.dir" location="${hibernate-core.home}/lib"/>
 <property name="resources.dir" value="src/resources"/>
 <property name="testresources.dir" value="src/test-resources"/>
-    <!-- <property name="hibernate-core.jdbc.dir" location="${hibernate-core.home}/lib"/>
-    <property name="hibernate-core.doc.api" location="${hibernate-core.home}/doc/api"/>
-
-    <property name="common.dir" value="${basedir}"/>
-
-    <property name="resources.dir" value="src/resources"/>
-    <property name="testresources.dir" value="src/test-resources"/>-->
     <property name="build.testresources.dir" value="${build.dir}/testresources"/>
     <property name="build.temp.dir" value="${build.dir}/temp"/> 
   <path id="lib.class.path">
@@ -250,11 +231,6 @@
     </target>
 
     <target name="compiletest" depends="compile" description="Compile the tests">
-        <available
-                classname="org.eclipse.core.launcher.Main"
-                property="build.compiler"
-                value="org.eclipse.jdt.core.JDTCompilerAdapter"
-                classpath="${java.class.path}"/>
         <javac
                 srcdir="${test.dir}"
                 destdir="${testclasses.dir}"



More information about the hibernate-commits mailing list