[hibernate-commits] Hibernate SVN: r16239 - annotations/branches/v3_4_0_GA_CP.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Mar 31 07:49:10 EDT 2009


Author: jcosta at redhat.com
Date: 2009-03-31 07:49:10 -0400 (Tue, 31 Mar 2009)
New Revision: 16239

Modified:
   annotations/branches/v3_4_0_GA_CP/common-build.xml
Log:
ANN-813 - Added an 'unless' in the ivy targets, to skip the execution if the property disable.ivy is set. 

Modified: annotations/branches/v3_4_0_GA_CP/common-build.xml
===================================================================
--- annotations/branches/v3_4_0_GA_CP/common-build.xml	2009-03-31 10:49:23 UTC (rev 16238)
+++ annotations/branches/v3_4_0_GA_CP/common-build.xml	2009-03-31 11:49:10 UTC (rev 16239)
@@ -207,14 +207,14 @@
 	</target>
 	
 	<target name="get.deps.core" depends="init"
-		description="retrieve the core dependencies">
+		description="retrieve the core dependencies" unless="disable.ivy">
 		<ivy:resolve conf="default"/>
 		<ivy:retrieve pattern="${ivy.dep.dir}/core/[artifact].[ext]"
 			conf="default"/>
 	</target>	
 	
 	<target name="get.deps.test" depends="init"
-		description="retrieve the test dependencies">
+		description="retrieve the test dependencies" unless="disable.ivy">
 		<ivy:resolve conf="test"/>
 		<ivy:retrieve pattern="${ivy.dep.dir}/test/[artifact].[ext]" conf="test"/>
 	</target>	
@@ -452,4 +452,4 @@
 		</artifact:deploy>
 	</target>
 	
-</project>
\ No newline at end of file
+</project>




More information about the hibernate-commits mailing list