summaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-16 12:55:49 +0300
committerArtur Signell <artur@vaadin.com>2012-08-16 12:55:49 +0300
commit03a1b83a9ad153ed57ff44a82051b6ca6c82df1d (patch)
tree04e82ae6c7e70c0bebcd6e40740aa674f793fcf0 /build/build.xml
parent8d0c8573820239e2bc7a54fbbc4de0bf41a8c58f (diff)
downloadvaadin-framework-03a1b83a9ad153ed57ff44a82051b6ca6c82df1d.tar.gz
vaadin-framework-03a1b83a9ad153ed57ff44a82051b6ca6c82df1d.zip
Ensure client-compiler is compiled before compiling widgetsets in nightly (#9299)
Diffstat (limited to 'build/build.xml')
-rw-r--r--build/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml
index 7e380783af..5ea0f1b4c7 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -769,7 +769,7 @@
</antcall>
</target>
- <target name="compile-widgetset-testing" depends="compile-tests">
+ <target name="compile-widgetset-testing">
<!-- Create a path reference containing default widgetset classpath + testbench files -->
<path id="compile.classpath.testingwidgetset">
<path refid="compile.classpath.widgetset" />
@@ -792,7 +792,7 @@
<!-- Compiles all widgetsets. -->
<!-- This is called when building packages and when compiling all -->
<!-- widgetsets, but not when compiling individual widgetsets. -->
- <target name="compile-client-side" depends="compile-gwt, compile-server-side, compile-tests">
+ <target name="compile-client-side" depends="compile-gwt, compile-server-side, compile-tests, compile-client-compiler">
<echo>Compiling widget sets in parallel.</echo>
<parallel threadsperprocessor="1">
<antcall inheritrefs="true" target="compile-widgetset-default"/>