diff options
Diffstat (limited to 'all')
-rw-r--r-- | all/build.xml | 15 |
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"> |