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 /themes/build.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 'themes/build.xml')
-rw-r--r-- | themes/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/build.xml b/themes/build.xml index 5ee7ec4ec7..93959e054f 100644 --- a/themes/build.xml +++ b/themes/build.xml @@ -22,7 +22,7 @@ </union> <target name="compile-themes"> - <ivy:resolve resolveid="common" conf="build" /> + <ivy:resolve log="download-only" resolveid="common" conf="build" /> <ivy:cachepath pathid="classpath.compile.theme" conf="build" /> <antcall target="compile-theme"> @@ -69,7 +69,7 @@ <target name="compile-theme" depends="copy-theme"> <fail unless="theme" message="You must give the theme name to compile in the 'theme' parameter" /> - <ivy:resolve resolveid="common" conf="compile-theme" /> + <ivy:resolve log="download-only" resolveid="common" conf="compile-theme" /> <ivy:cachepath pathid="classpath.compile.theme" conf="compile-theme" /> <ivy:cachepath pathid="classpath.runtime.theme" conf="build" /> |