diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-09-26 10:39:02 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-09-26 10:39:02 +0200 |
commit | 366703522be6b533383c1b330c1e5f8ccd1ded66 (patch) | |
tree | f3909d27d428179bc76def231640a6546c75da18 /vaadin-app | |
parent | a08a03d81ab9755679d3d393fc843e9f55608250 (diff) | |
download | skeletons-366703522be6b533383c1b330c1e5f8ccd1ded66.zip skeletons-366703522be6b533383c1b330c1e5f8ccd1ded66.tar.gz |
vaadin-app: add update target
Diffstat (limited to 'vaadin-app')
-rw-r--r-- | vaadin-app/build.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vaadin-app/build.xml b/vaadin-app/build.xml index a922e3e..9ea1aab 100644 --- a/vaadin-app/build.xml +++ b/vaadin-app/build.xml @@ -514,4 +514,21 @@ includeantruntime="false"> </target> +<!-- ==================== Update Target =================================== --> + +<!-- + + The "update" target tells the specified Tomcat installation to dynamically + update this web application from service. + +--> + + <target name="update" depends="compile" + description="Update application on servlet container"> + + <antcall target="remove"/> + <antcall target="install"/> + + </target> + </project> |