-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.xml
More file actions
executable file
·20 lines (18 loc) · 797 Bytes
/
Copy pathbuild.xml
File metadata and controls
executable file
·20 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
May 17, 2011 3:13:09 PM
test project
testing deployment to windows azure
tconte
====================================================================== -->
<project name="project" basedir="." default="deploy">
<property name="warfile" value="foo" />
<target name="deploy">
<war destfile="${warfile}.war" webxml="WebContent/WEB-INF/web.xml" update="true">
<classes dir="build\classes"/>
<fileset dir="WebContent">
<exclude name="WEB-INF/web.xml"/>
</fileset>
</war>
</target>
</project>