forked from RoopeshNair/purchasing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
43 lines (35 loc) · 1.13 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="war" name="FabrikamPurchasing">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.8"/>
<property name="source" value="1.8"/>
<path id="Web App Libraries.libraryclasspath"/>
<path id="EAR Libraries.libraryclasspath"/>
<path id="SkyFall.classpath">
<pathelement location="build/classes"/>
<path refid="Web App Libraries.libraryclasspath"/>
<path refid="EAR Libraries.libraryclasspath"/>
</path>
<target name="clean">
<delete dir="dist" />
<delete dir="build" />
</target>
<target name="init">
</target>
<path id="compile.classpath">
</path>
<target name="compile" depends="init" >
</target>
<target name="war" depends="compile">
<war destfile="dist/purchasing.war" webxml="WebContent/WEB-INF/web.xml">
<fileset dir="WebContent"/>
<lib dir="WebContent/WEB-INF/lib"/>
</war>
</target>
<target name="copy" depends="war">
<copydir src="*"
dest="staging/drop"
includes="**/*.war" />
</target>
</project>