diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-31 16:13:18 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-09 11:23:07 +0300 |
commit | 557acfb6c4212ad1ddd5270fc7e25f1fc3d63762 (patch) | |
tree | 03d5d4887370830d3987df959e3ccc5c287a416a /build.xml | |
parent | 4156f77898416e1b5a7f0ef69823b2dda537bab2 (diff) | |
download | vaadin-framework-557acfb6c4212ad1ddd5270fc7e25f1fc3d63762.tar.gz vaadin-framework-557acfb6c4212ad1ddd5270fc7e25f1fc3d63762.zip |
Module for compiled client side (#9299)
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ <?xml version="1.0"?> -<project name="vaadin" basedir="." default="all" xmlns:ivy="antlib:org.apache.ivy.ant"> +<project name="vaadin" basedir="." default="package" xmlns:ivy="antlib:org.apache.ivy.ant"> <include file="common.xml" as="common" /> <path id="vaadin.buildhelpers.classpath" location="${vaadin.basedir}/buildhelpers/result/classes" /> @@ -9,8 +9,8 @@ target: all ================================= --> <!--<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"> + <target name="package" description="Compiles and packages all modules in the project" depends="buildorder"> + <subant buildpathref="build-path" target="publish-local"> </subant> </target> |