summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-31 13:54:26 +0300
committerArtur Signell <artur@vaadin.com>2012-09-09 11:23:04 +0300
commitd8a5f96b36946ed315dcf48cc32701e0435bdfaa (patch)
treef7fcf075a47430a9f45cfda652d91f576e32c98c /build.xml
parenteef56b04b46c6ad202beef58c342dbb5ea0e4f5d (diff)
downloadvaadin-framework-d8a5f96b36946ed315dcf48cc32701e0435bdfaa.tar.gz
vaadin-framework-d8a5f96b36946ed315dcf48cc32701e0435bdfaa.zip
Support running JUnit tests (#9299)
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index d3a001c3c5..03c0ecfe5e 100644
--- a/build.xml
+++ b/build.xml
@@ -10,7 +10,6 @@
================================= -->
<!--<target name="all" description="Compiles all parts of the project" depends="buildhelpers,theme-compiler,shared,server,client">-->
<target name="all" description="Compiles all parts of the project" depends="buildorder">
-
<subant buildpathref="build-path">
</subant>
</target>
@@ -33,4 +32,9 @@
</target>
+ <target name="tests" depends="buildorder">
+ <subant buildpathref="build-path" target="tests">
+ </subant>
+ </target>
+
</project>