diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-15 15:30:27 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-15 15:30:42 +0300 |
commit | b9b70599b348f5ea4d55e98b5d35b06fdd7fe4a0 (patch) | |
tree | 5cbb86cc5fdbc6108735152844c4c2a39ff8f2dd /build/build.xml | |
parent | 7b10c4668820a7b7eeda8f4cb7269b2873dd676e (diff) | |
download | vaadin-framework-b9b70599b348f5ea4d55e98b5d35b06fdd7fe4a0.tar.gz vaadin-framework-b9b70599b348f5ea4d55e98b5d35b06fdd7fe4a0.zip |
Fixed compilation of testing widgetset
Diffstat (limited to 'build/build.xml')
-rw-r--r-- | build/build.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/build/build.xml b/build/build.xml index 11b85d34ce..7e380783af 100644 --- a/build/build.xml +++ b/build/build.xml @@ -715,7 +715,8 @@ <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, compile-client-compiler"> + <!-- Caller must ensure necessary classes have been compiled --> + <target name="compile-widgetset"> <fail unless="widgetset" message="No widgetset parameter set"/> <property name="widgetset-style" value="OBF" /> <property name="widgetset-localWorkers" value="2" /> @@ -768,12 +769,12 @@ </antcall> </target> - <target name="compile-widgetset-testing"> - <!-- Crate a path reference containing default widgetset classpath + testbench files --> + <target name="compile-widgetset-testing" depends="compile-tests"> + <!-- Create a path reference containing default widgetset classpath + testbench files --> <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" /> |