diff options
author | Artur Signell <artur@vaadin.com> | 2013-09-04 21:04:11 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-09-04 21:04:11 +0300 |
commit | 3d01d74aa44fc0384ef2e4ac836d2c0fb0f7314c (patch) | |
tree | f36b52613dcc21004d21e18872a4a8734a1513d5 /common.xml | |
parent | bc90a58b6ea58e441af6f83380ab8c979a8a6c7b (diff) | |
download | vaadin-framework-3d01d74aa44fc0384ef2e4ac836d2c0fb0f7314c.tar.gz vaadin-framework-3d01d74aa44fc0384ef2e4ac836d2c0fb0f7314c.zip |
Reduce Ivy resolver spam to a minimum (#12510)
Change-Id: Ie80f2bad49f38a2391a8a560825aceb19f82de0a
Diffstat (limited to 'common.xml')
-rw-r--r-- | common.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common.xml b/common.xml index 993802404f..88fbc49196 100644 --- a/common.xml +++ b/common.xml @@ -14,7 +14,7 @@ <ivy:settings file="${vaadin.basedir}/ivysettings.xml" /> <ivy:settings file="${vaadin.basedir}/ivysettings.xml" id="ivysettings" /> - <ivy:resolve file="${vaadin.basedir}/ivy-taskdefs.xml" conf="taskdefs" log="quiet" /> + <ivy:resolve log="download-only" file="${vaadin.basedir}/ivy-taskdefs.xml" conf="taskdefs" /> <ivy:cachepath pathid="taskdefs.classpath" conf="taskdefs" /> <taskdef uri="antlib:net.sf.antcontrib" resource="net/sf/antcontrib/antlib.xml" classpathref="taskdefs.classpath" /> <!-- ant contrib for Maven integration --> @@ -354,12 +354,12 @@ <target name="dependencies" description="Resolves dependencies needed by this module"> <property name='conf' value="build, build-provided" /> - <ivy:resolve resolveid="common" conf="${conf}" /> + <ivy:resolve log="download-only" resolveid="common" conf="${conf}" /> <ivy:cachepath pathid="classpath.compile.dependencies" conf="${conf}" /> </target> <target name="dependencies.test" description="Resolves dependencies needed by test"> - <ivy:resolve resolveid="common" conf="test" /> + <ivy:resolve log="download-only" resolveid="common" conf="test" /> <ivy:cachepath pathid="classpath.test.dependencies" conf="test" /> </target> @@ -372,7 +372,7 @@ <fail unless="result.dir" message="No result.dir parameter given" /> <property name="conf" value="*(public)" /> - <ivy:resolve conf="${conf}" /> + <ivy:resolve log="download-only" conf="${conf}" /> <ivy:publish settingsref="ivysettings" conf="${conf}" resolver="build-temp" overwrite="true" forcedeliver="true"> <!-- <artifacts pattern="${result.dir}/[artifact]-[revision].[ext]" /> --> @@ -384,7 +384,7 @@ <target name="publish.to.local.maven"> <property name="conf" value="*(public)" /> - <ivy:resolve conf="${conf}" /> + <ivy:resolve log="download-only" conf="${conf}" /> <ivy:publish conf="${conf}" resolver="local-maven" overwrite="true"> </ivy:publish> </target> |