[hibernate-commits] Hibernate SVN: r16242 - search/branches/Branch_3_1.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Mar 31 08:28:53 EDT 2009


Author: jcosta at redhat.com
Date: 2009-03-31 08:28:53 -0400 (Tue, 31 Mar 2009)
New Revision: 16242

Modified:
   search/branches/Branch_3_1/build.xml
Log:
HSEARCH-356 - Added an 'unless' in the ivy targets, to skip the execution if the property disable.ivy is set. 

Modified: search/branches/Branch_3_1/build.xml
===================================================================
--- search/branches/Branch_3_1/build.xml	2009-03-31 12:21:41 UTC (rev 16241)
+++ search/branches/Branch_3_1/build.xml	2009-03-31 12:28:53 UTC (rev 16242)
@@ -120,7 +120,7 @@
         <mkdir dir="${build.testresources.dir}"/>
     </target>
 
-    <target name="get.deps.core" depends="init" description="retrieve the core dependencies">
+    <target name="get.deps.core" depends="init" description="retrieve the core dependencies" unless="disable.ivy">
         <ivy:resolve conf="default"/>
         <ivy:retrieve pattern="${ivy.dep.dir}/core/[artifact].[ext]" conf="default"/>
     </target>
@@ -150,7 +150,7 @@
         </copy>
     </target>
 
-    <target name="get.deps.test" depends="init" description="retrieve the test dependencies">
+    <target name="get.deps.test" depends="init" description="retrieve the test dependencies" unless="disable.ivy">
         <ivy:resolve conf="test"/>
         <ivy:retrieve pattern="${ivy.dep.dir}/test/[artifact].[ext]" conf="test"/>
     </target>




More information about the hibernate-commits mailing list