[hibernate-commits] Hibernate SVN: r14711 - search/trunk.

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


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

Modified:
   search/trunk/build.xml
Log:
Silently fail on file move

Modified: search/trunk/build.xml
===================================================================
--- search/trunk/build.xml	2008-05-29 15:12:06 UTC (rev 14710)
+++ search/trunk/build.xml	2008-05-29 15:12:25 UTC (rev 14711)
@@ -356,10 +356,13 @@
         </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"/>
         <!--move file="${dist.lib.dir}/test/commons-annotations.jar" tofile="${dist.lib.dir}/test/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}/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">




More information about the hibernate-commits mailing list