Mercurial > public > develkit
diff ivy-ant.xml @ 48:561ece0a8225
Return to using snapshot resolver to ensure ivy.xml file from dependency can be found and improve performance and tracbility. removed changing from chain. Modified local to be treated as local.
author | smith@nwoca.org |
---|---|
date | Thu, 16 Jun 2011 17:26:39 -0400 |
parents | 639bec4999f2 |
children | 7066d68bcb47 |
line wrap: on
line diff
--- a/ivy-ant.xml Thu Jun 16 10:54:30 2011 -0400 +++ b/ivy-ant.xml Thu Jun 16 17:26:39 2011 -0400 @@ -34,15 +34,20 @@ <echoproperties prefix="ivy.project"/> </target> + <target name="ivy-clean-all" description="cleans ssdt caches and local builds" depends="init"> + <delete failonerror="false" includeemptydirs="true" dir="${user.home}/.ivy2"/> + </target> + <target name="ivy-clean" description="cleans ssdt caches and local builds" depends="init"> <delete failonerror="false" includeemptydirs="true"> <fileset dir="${user.home}/.ivy2/cache"> <include name="org.ssdt_ohio/**"/> <include name="org.nwoca.ssdt/**"/> - <include name="*org*.ssdt*.*"/> + <include name="*ssdt*.*"/> </fileset> </delete> <delete dir="${user.home}/.ivy2/ssdt-cache" failonerror="false"/> + <delete dir="${user.home}/.ivy2/snapshot-cache" failonerror="false"/> <delete dir="${user.home}/.ivy2/local" failonerror="false"/> </target> @@ -148,21 +153,21 @@ </else> </if> <if> - <isset property="coverage.run.with.cobertura"/> - <then> + <isset property="coverage.run.with.cobertura"/> + <then> <property name="precoverage.run.test.classpath" value="${run.test.classpath}"/> <var name="run.test.classpath" unset="true"/> <property name="run.test.classpath" value="${cobertura.instrumented.classes}${path.separator}${precoverage.run.test.classpath}${path.separator}${cobertura.classpath.path}"/> </then> - </if> + </if> <if> - <isset property="coverage.run.with.clover"/> - <then> + <isset property="coverage.run.with.clover"/> + <then> <property name="preclover.run.test.classpath" value="${run.test.classpath}"/> <var name="run.test.classpath" unset="true"/> <property name="run.test.classpath" value="${preclover.run.test.classpath}${path.separator}${clover.jar.file}"/> </then> - </if> + </if> <echo level="debug" message="$${run.test.classpath} : ${run.test.classpath}"/>