-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.xml
38 lines (31 loc) · 1.12 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
<?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="init">
</target>
<path id="compile.classpath">
</path>
<target name="compile" depends="init" >
</target>
<target name="war" depends="compile">
<war destfile="Deploy/purchasing.war" webxml="WebContent/WEB-INF/web.xml">
<fileset dir="WebContent"/>
<lib dir="WebContent/WEB-INF/lib"/>
</war>
</target>
<target name="clean">
<delete dir="dist" />
<delete dir="build" />
</target>
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
</project>