summaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-15 12:12:05 +0300
committerArtur Signell <artur@vaadin.com>2012-08-15 12:12:05 +0300
commit40f30987c9ff0bdfc4be8643e994917b0dcff55c (patch)
treee1cbe7ac19ca6c9358ce579aa4756670d1173a42 /build/build.xml
parentee7efdb3ac68829f3f7489097b8264d480421b0a (diff)
downloadvaadin-framework-40f30987c9ff0bdfc4be8643e994917b0dcff55c.tar.gz
vaadin-framework-40f30987c9ff0bdfc4be8643e994917b0dcff55c.zip
Ensure client-compiler is compiled before compiling widgetsets (#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 8b22d6f750..11b85d34ce 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -715,7 +715,7 @@
<target name="compile-widgetset-generator" depends="compile-server,compile-client, compile-client-compiler"/>
<!-- Compiles the widgetset given as the first parameter -->
- <target name="compile-widgetset" depends="init-deps">
+ <target name="compile-widgetset" depends="init-deps, compile-client-compiler">
<fail unless="widgetset" message="No widgetset parameter set"/>
<property name="widgetset-style" value="OBF" />
<property name="widgetset-localWorkers" value="2" />
@@ -773,7 +773,7 @@
<path id="compile.classpath.testingwidgetset">
<path refid="compile.classpath.widgetset" />
<pathelement location="${result-classes-testbench}" />
- <pathelement location="${result-src-testbench}" />
+ <pathelement location="${result-src-testbench}" />
</path>
<antcall target="compile-widgetset">
<reference refid="compile.classpath.testingwidgetset" torefid="compile.classpath.widgetset" />