summaryrefslogtreecommitdiffstats
path: root/all/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-09-06 16:53:16 +0300
committerArtur Signell <artur@vaadin.com>2012-09-09 11:23:43 +0300
commit0886a33531f34d18dc2cb17600ac911df0b22e87 (patch)
treec95f12935cca34eb36fe7bf7170d0a2ab13a4bd1 /all/build.xml
parent01a59b3ca8e8bcc9e5b772aabff03c59439edb12 (diff)
downloadvaadin-framework-0886a33531f34d18dc2cb17600ac911df0b22e87.tar.gz
vaadin-framework-0886a33531f34d18dc2cb17600ac911df0b22e87.zip
Avoid trying to resolve 'all' during building 'all' (#9299)
Diffstat (limited to 'all/build.xml')
-rw-r--r--all/build.xml15
1 files changed, 11 insertions, 4 deletions
diff --git a/all/build.xml b/all/build.xml
index d5b9b5fd83..8e4f8cdd8a 100644
--- a/all/build.xml
+++ b/all/build.xml
@@ -16,10 +16,17 @@
<target name="fetch.module.and.dependencies">
<fail unless="module" message="No 'module' parameter given" />
- <ivy:cachepath pathid="module.and.deps" inline="true" organisation="com.vaadin" module="vaadin-${module}" revision="${vaadin.version}" />
- <copy todir="${temp.dir}" flatten="true">
- <path refid="module.and.deps" />
- </copy>
+ <antcontrib:if>
+ <not>
+ <equals arg1="${module}" arg2="all" />
+ </not>
+ <then>
+ <ivy:cachepath pathid="module.and.deps" inline="true" organisation="com.vaadin" module="vaadin-${module}" revision="${vaadin.version}" />
+ <copy todir="${temp.dir}" flatten="true">
+ <path refid="module.and.deps" />
+ </copy>
+ </then>
+ </antcontrib:if>
</target>
<target name="zip">