diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-31 13:54:26 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-09 11:23:04 +0300 |
commit | d8a5f96b36946ed315dcf48cc32701e0435bdfaa (patch) | |
tree | f7fcf075a47430a9f45cfda652d91f576e32c98c /server/build.xml | |
parent | eef56b04b46c6ad202beef58c342dbb5ea0e4f5d (diff) | |
download | vaadin-framework-d8a5f96b36946ed315dcf48cc32701e0435bdfaa.tar.gz vaadin-framework-d8a5f96b36946ed315dcf48cc32701e0435bdfaa.zip |
Support running JUnit tests (#9299)
Diffstat (limited to 'server/build.xml')
-rw-r--r-- | server/build.xml | 16 |
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 |