summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--all/build.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/all/build.xml b/all/build.xml
index e09b7a55b7..d381c03b1c 100644
--- a/all/build.xml
+++ b/all/build.xml
@@ -34,7 +34,7 @@
<unzip src="${file}" dest="${javadoc.temp.dir}" />
</target>
- <target name="javadoc">
+ <target name="javadoc" depends="copy-jars">
<!-- Unpack all source files to javadoc.temp.dir-->
<antcontrib:foreach list="${modules.to.publish.to.maven}" target="unzip.to.javadoctemp" param="module" />
@@ -62,7 +62,7 @@
</target>
- <target name="zip" depends="javadoc">
+ <target name="copy-jars">
<delete dir="${temp.dir}" />
<antcontrib:foreach list="${modules.to.publish.to.maven}" target="fetch.module.and.dependencies" param="module" />
<!-- All jars are now in temp.dir. Still need to separate vaadin and deps -->
@@ -73,6 +73,9 @@
</fileset>
</move>
+
+ </target>
+ <target name="zip" depends="copy-jars, javadoc">
<zip destfile="${zip.file}">
<fileset dir="${temp.dir}">
<!-- Avoid conflicts with servlet and portlet API. They are provided by the container -->