summaryrefslogtreecommitdiffstats
path: root/server/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 /server/build.xml
parenteef56b04b46c6ad202beef58c342dbb5ea0e4f5d (diff)
downloadvaadin-framework-d8a5f96b36946ed315dcf48cc32701e0435bdfaa.tar.gz
vaadin-framework-d8a5f96b36946ed315dcf48cc32701e0435bdfaa.zip
Support running JUnit tests (#9299)
Diffstat (limited to 'server/build.xml')
-rw-r--r--server/build.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/server/build.xml b/server/build.xml
index b4609cd265..1d3f8a5938 100644
--- a/server/build.xml
+++ b/server/build.xml
@@ -12,10 +12,18 @@
<property name="module.name" value="vaadin-server" />
<property name="result.dir" value="result" />
<path id="classpath.compile.custom" />
+ <path id="classpath.tests.custom" />
+
+ <union id="jar.includes">
+ <union refid="server.gwt.includes" />
+ <fileset dir="${vaadin.basedir}">
+ <include name="WebContent/VAADIN/vaadinBootstrap.js" />
+ </fileset>
+ </union>
<target name="jar">
<antcall target="common.jar">
- <reference torefid="extra.jar.includes" refid="server.gwt.includes" />
+ <reference torefid="extra.jar.includes" refid="jar.includes" />
</antcall>
</target>
@@ -26,4 +34,10 @@
<target name="clean">
<antcall target="common.clean" />
</target>
+
+ <target name="tests">
+ <antcall target="common.tests.run"/>
+ </target>
+
+
</project> \ No newline at end of file