[hibernate-commits] Hibernate SVN: r11172 - in branches/Branch_3_2/HibernateExt: commons-annotations and 3 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Feb 8 22:41:46 EST 2007


Author: epbernard
Date: 2007-02-08 22:41:46 -0500 (Thu, 08 Feb 2007)
New Revision: 11172

Modified:
   branches/Branch_3_2/HibernateExt/annotations/build.xml
   branches/Branch_3_2/HibernateExt/commons-annotations/build.xml
   branches/Branch_3_2/HibernateExt/entitymanager/build.xml
   branches/Branch_3_2/HibernateExt/search/build.xml
   branches/Branch_3_2/HibernateExt/validator/build.xml
Log:
renaming not propagated

Modified: branches/Branch_3_2/HibernateExt/annotations/build.xml
===================================================================
--- branches/Branch_3_2/HibernateExt/annotations/build.xml	2007-02-08 03:40:51 UTC (rev 11171)
+++ branches/Branch_3_2/HibernateExt/annotations/build.xml	2007-02-09 03:41:46 UTC (rev 11172)
@@ -24,16 +24,16 @@
     <property name="javac.target" value="1.5"/>
     <property name="common.dir" value="../common"/>
 
-	<property name="jpa-api.jar" value="${basedir}/../ejb-api/build/ejb3-persistence.jar"/>
+	<property name="jpa-api.jar" value="${basedir}/../jpa-api/build/ejb3-persistence.jar"/>
 	<property name="validator.jar"
 			  value="${basedir}/../validator/target/hibernate-validator/hibernate-validator.jar"/>
 	<property name="commons-annotations.jar"
 			  value="${basedir}/../commons-annotations/target/hibernate-commons-annotations/hibernate-commons-annotations.jar"/>
 
 
-	<available property="jpa-present" file="${basedir}/../ejb-api" type="dir"/>
+	<available property="jpa-present" file="${basedir}/../jpa-api" type="dir"/>
 	<import file="${common.dir}/common-build.xml"/>
-	<property name="jpa-javadoc.dir" value="${dist.doc.dir}/ejb-api"/>
+	<property name="jpa-javadoc.dir" value="${dist.doc.dir}/jpa-api"/>
 
 	<path id="lib.moduleclass.path">
 		<pathelement location="${jpa-api.jar}"/>
@@ -60,8 +60,8 @@
     </target>
 
 	<target name="get.jpa-api" depends="init" unless="jpa-api.jar.available">
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="jar"/>
 	</target>
 
 	<target name="get.commons-annotations" depends="init" unless="commons-annotations.jar.available">
@@ -191,9 +191,9 @@
 
 	<target name="jpa-javadoc" if="jpa-present">
 		<mkdir dir="${jpa-javadoc.dir}"/>
-		<ant dir="../ejb-api" target="javadoc" inheritAll="false"/>
+		<ant dir="../jpa-api" target="javadoc" inheritAll="false"/>
 		<copy todir="${jpa-javadoc.dir}">
-			<fileset dir="${basedir}/../ejb-api/build/api">
+			<fileset dir="${basedir}/../jpa-api/build/api">
 				<include name="**/*.*"/>
 			</fileset>
 		</copy>

Modified: branches/Branch_3_2/HibernateExt/commons-annotations/build.xml
===================================================================
--- branches/Branch_3_2/HibernateExt/commons-annotations/build.xml	2007-02-08 03:40:51 UTC (rev 11171)
+++ branches/Branch_3_2/HibernateExt/commons-annotations/build.xml	2007-02-09 03:41:46 UTC (rev 11172)
@@ -15,7 +15,7 @@
 	<property name="javac.target" value="1.5"/>
 	<property name="common.dir" value="${basedir}/../common"/>
 	<property name="hibernate-core.jar.available" value="true"/>
-	<property name="jpa-api.jar" value="${basedir}/../ejb-api/build/ejb3-persistence.jar"/>
+	<property name="jpa-api.jar" value="${basedir}/../jpa-api/build/ejb3-persistence.jar"/>
 
 	<import file="${common.dir}/common-build.xml"/>
 
@@ -94,8 +94,8 @@
 	</target>
 
 	<target name="get.jpa-api" depends="init" unless="jpa-api.jar.available">
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="jar"/>
 	</target>
 
 	<target name="jar" depends="compile" description="Build the distribution .jar file">

Modified: branches/Branch_3_2/HibernateExt/entitymanager/build.xml
===================================================================
--- branches/Branch_3_2/HibernateExt/entitymanager/build.xml	2007-02-08 03:40:51 UTC (rev 11171)
+++ branches/Branch_3_2/HibernateExt/entitymanager/build.xml	2007-02-09 03:41:46 UTC (rev 11172)
@@ -24,17 +24,17 @@
 	<property name="javac.target" value="1.5"/>
     <property name="common.dir" value="../common"/>
 
-    <available property="jpa-present" file="${basedir}/../ejb-api" type="dir"/>
-    <property name="jpa-api.jar" value="${basedir}/../ejb-api/build/ejb3-persistence.jar"/>
+    <available property="jpa-present" file="${basedir}/../jpa-api" type="dir"/>
+    <property name="jpa-api.jar" value="${basedir}/../jpa-api/build/ejb3-persistence.jar"/>
     <property name="annotations.jar"
-                  value="${basedir}/../metadata/target/hibernate-annotations/hibernate-annotations.jar"/>
+                  value="${basedir}/../annotations/target/hibernate-annotations/hibernate-annotations.jar"/>
     <property name="validator.jar"
                       value="${basedir}/../validator/target/hibernate-validator/hibernate-validator.jar"/>
     <property name="commons-annotations.jar"
                   value="${basedir}/../commons-annotations/target/hibernate-commons-annotations/hibernate-commons-annotations.jar"/>
 
     <import file="${common.dir}/common-build.xml"/>
-	<property name="jpa-javadoc.dir" value="${dist.doc.dir}/ejb-api"/>
+	<property name="jpa-javadoc.dir" value="${dist.doc.dir}/jpa-api"/>
 
 
     <property name="resources.dir" value="src/resources"/>
@@ -72,8 +72,8 @@
     </target>
 
 	<target name="get.jpa-api" depends="init" unless="jpa-api.jar.available">
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="jar"/>
 	</target>
 
 	<target name="get.commons-annotations" depends="init" unless="commons-annotations.jar.available">
@@ -82,8 +82,8 @@
 	</target>
 
 	<target name="get.annotations" depends="init" unless="annotations.jar.available">
-		<ant inheritall="false" dir="${basedir}/../metadata" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../metadata" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../annotations" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../annotations" target="jar"/>
 	</target>
 
     <target name="get.validator" depends="init" unless="validator.jar.available">
@@ -289,9 +289,9 @@
 	 
 	 <target name="jpa-javadoc" if="jpa-present">
 		 <mkdir dir="${jpa-javadoc.dir}"/>
-		 <ant dir="../ejb-api" target="javadoc" inheritAll="false"/>
+		 <ant dir="../jpa-api" target="javadoc" inheritAll="false"/>
 		 <copy todir="${jpa-javadoc.dir}">
-		     <fileset dir="${basedir}/../ejb-api/build/api">
+		     <fileset dir="${basedir}/../jpa-api/build/api">
 			     <include name="**/*.*"/>
 			 </fileset>
 		 </copy>

Modified: branches/Branch_3_2/HibernateExt/search/build.xml
===================================================================
--- branches/Branch_3_2/HibernateExt/search/build.xml	2007-02-08 03:40:51 UTC (rev 11171)
+++ branches/Branch_3_2/HibernateExt/search/build.xml	2007-02-09 03:41:46 UTC (rev 11172)
@@ -24,9 +24,9 @@
     <property name="jdbc.dir" value="jdbc"/>
 	<property name="common.dir" value="${basedir}/../common"/>
 
-    <property name="jpa-api.jar" value="${basedir}/../ejb-api/build/ejb3-persistence.jar"/>
+    <property name="jpa-api.jar" value="${basedir}/../jpa-api/build/ejb3-persistence.jar"/>
 	<property name="annotations.jar"
-			  value="${basedir}/../metadata/target/hibernate-annotations/hibernate-annotations.jar"/>
+			  value="${basedir}/../annotations/target/hibernate-annotations/hibernate-annotations.jar"/>
 	<property name="commons-annotations.jar"
 			  value="${basedir}/../commons-annotations/target/hibernate-commons-annotations/hibernate-commons-annotations.jar"/>
 	<property name="validator.jar"
@@ -65,8 +65,8 @@
     </target>
 
 	<target name="get.jpa-api" depends="init" unless="jpa-api.jar.available">
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="jar"/>
 	</target>
 
 	<target name="get.commons-annotations" depends="init" unless="commons-annotations.jar.available">
@@ -80,8 +80,8 @@
 	</target>
 
 	<target name="get.annotations" depends="init" unless="annotations.jar.available">
-		<ant inheritall="false" dir="${basedir}/../metadata" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../metadata" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../annotations" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../annotations" target="jar"/>
 	</target>
 
 	<target name="compile" depends="init,get.commons-annotations" description="Compile the Java source code">

Modified: branches/Branch_3_2/HibernateExt/validator/build.xml
===================================================================
--- branches/Branch_3_2/HibernateExt/validator/build.xml	2007-02-08 03:40:51 UTC (rev 11171)
+++ branches/Branch_3_2/HibernateExt/validator/build.xml	2007-02-09 03:41:46 UTC (rev 11172)
@@ -33,13 +33,13 @@
 	<property name="common.dir" value="${basedir}/../common"/>
 
     <!-- dependencies -->
-    <property name="jpa-api.jar" value="${basedir}/../ejb-api/build/ejb3-persistence.jar"/>
+    <property name="jpa-api.jar" value="${basedir}/../jpa-api/build/ejb3-persistence.jar"/>
 	<property name="annotations.jar"
-			  value="${basedir}/../metadata/target/hibernate-annotations/hibernate-annotations.jar"/>
+			  value="${basedir}/../annotations/target/hibernate-annotations/hibernate-annotations.jar"/>
     <property name="jpa.jar"
-              value="${basedir}/../ejb/target/hibernate-entitymanager/hibernate-entitymanager.jar"/>
+              value="${basedir}/../entitymanager/target/hibernate-entitymanager/hibernate-entitymanager.jar"/>
     <property name="archive-browsing.jar"
-              value="${basedir}/../ejb/lib/jboss-archive-browsing.jar"/>
+              value="${basedir}/../entitymanager/lib/jboss-archive-browsing.jar"/>
     <property name="commons-annotations.jar"
 			  value="${basedir}/../commons-annotations/target/hibernate-commons-annotations/hibernate-commons-annotations.jar"/>
 
@@ -77,8 +77,8 @@
     </target>
 
 	<target name="get.jpa-api" depends="init" unless="jpa-api.jar.available">
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../ejb-api" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../jpa-api" target="jar"/>
 	</target>
 
 	<target name="get.commons-annotations" depends="init" unless="commons-annotations.jar.available">
@@ -87,13 +87,13 @@
 	</target>
 
 	<target name="get.annotations" depends="init" unless="annotations.jar.available">
-		<ant inheritall="false" dir="${basedir}/../metadata" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../metadata" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../annotations" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../annotations" target="jar"/>
 	</target>
 
     <target name="get.jpa" depends="init" unless="jpa.jar.available">
-		<ant inheritall="false" dir="${basedir}/../ejb" target="clean"/>
-		<ant inheritall="false" dir="${basedir}/../ejb" target="jar"/>
+		<ant inheritall="false" dir="${basedir}/../entitymanager" target="clean"/>
+		<ant inheritall="false" dir="${basedir}/../entitymanager" target="jar"/>
 	</target>
 
     <target name="compile" depends="init,get.jpa-api,get.commons-annotations" description="Compile the Java source code">




More information about the hibernate-commits mailing list