[hibernate-commits] Hibernate SVN: r14710 - entitymanager/trunk and 1 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu May 29 11:12:06 EDT 2008


Author: epbernard
Date: 2008-05-29 11:12:06 -0400 (Thu, 29 May 2008)
New Revision: 14710

Modified:
   annotations/trunk/build.xml
   entitymanager/trunk/build.xml
   validator/trunk/build.xml
Log:
Silently fail on file move

Modified: annotations/trunk/build.xml
===================================================================
--- annotations/trunk/build.xml	2008-05-29 14:43:52 UTC (rev 14709)
+++ annotations/trunk/build.xml	2008-05-29 15:12:06 UTC (rev 14710)
@@ -274,7 +274,8 @@
         </copy>
 
         <!-- ivy uses the module name without hibernate- (to mimic the directory names). Revert the situation -->
-        <move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"/>
+        <move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"
+              failonerror="false"/>
 
         <copy file="${basedir}/build.properties.dist" tofile="${dist.dir}/build.properties" failonerror="false">
 		</copy>

Modified: entitymanager/trunk/build.xml
===================================================================
--- entitymanager/trunk/build.xml	2008-05-29 14:43:52 UTC (rev 14709)
+++ entitymanager/trunk/build.xml	2008-05-29 15:12:06 UTC (rev 14710)
@@ -417,8 +417,10 @@
         </copy>
 
         <!-- ivy uses the module name without hibernate- (to mimic the directory names). Revert the situation -->
-        <move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"/>
-        <move file="${dist.lib.dir}/annotations.jar" tofile="${dist.lib.dir}/hibernate-annotations.jar"/>
+        <move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"
+              failonerror="false"/>
+        <move file="${dist.lib.dir}/annotations.jar" tofile="${dist.lib.dir}/hibernate-annotations.jar"
+              failonerror="false"/>
 
 
         <copy file="${basedir}/build.properties.dist" tofile="${dist.dir}/build.properties" failonerror="false">

Modified: validator/trunk/build.xml
===================================================================
--- validator/trunk/build.xml	2008-05-29 14:43:52 UTC (rev 14709)
+++ validator/trunk/build.xml	2008-05-29 15:12:06 UTC (rev 14710)
@@ -294,9 +294,12 @@
         </copy>
 
         <!-- ivy uses the module name without hibernate- (to mimic the directory names). Revert the situation -->
-        <move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"/>
-        <move file="${dist.lib.dir}/test/annotations.jar" tofile="${dist.lib.dir}/test/hibernate-annotations.jar"/>
-        <move file="${dist.lib.dir}/test/entitymanager.jar" tofile="${dist.lib.dir}/test/hibernate-entitymanager.jar"/>
+        <move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"
+              failonerror="false"/>
+        <move file="${dist.lib.dir}/test/annotations.jar" tofile="${dist.lib.dir}/test/hibernate-annotations.jar"
+              failonerror="false"/>
+        <move file="${dist.lib.dir}/test/entitymanager.jar" tofile="${dist.lib.dir}/test/hibernate-entitymanager.jar"
+              failonerror="false"/>
 
         <copy file="${basedir}/build.properties.dist" tofile="${dist.dir}/build.properties" failonerror="false">
 		</copy>




More information about the hibernate-commits mailing list