forked from snyk-schmidtty/juliet-test-suite-java
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.xml.template
100 lines (88 loc) · 3.34 KB
/
build.xml.template
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!---->
<project name="Testcases_per_CWE" default="war" basedir=".">
<description>
Java TestCases Build File
</description>
<!-- set global properties for this build -->
<property name="src" location="../../"/>
<property name="build" location="antbuild"/>
<property name="war" location="${basedir}.war"/>
<property name="jar" location="${basedir}.jar"/>
<basename property="basedir.basename" file="."/>
<!-- Required libraries -->
<property name="servlet.jar" location="../../../lib/servlet-api.jar"/>
<property name="commons-lang.jar" location="../../../lib/commons-lang-2.5.jar"/>
<property name="commons-codec.jar" location="../../../lib/commons-codec-1.5.jar"/>
<property name="javamail.jar" location="../../../lib/javamail-1.4.4.jar"/>
<path id="project.classpath">
<pathelement location="${servlet.jar}"/>
<pathelement location="${commons-lang.jar}"/>
<pathelement location="${commons-codec.jar}"/>
<pathelement location="${javamail.jar}"/>
<pathelement location="${build}"/>
</path>
<target name="init">
<!-- Create the time stamp -->
<tstamp />
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init" description="compile the source " >
<!-- Compile the support files first, other than the Mains -->
<javac includeantruntime="false"
srcdir="${src}"
destdir="${build}"
debug="true"
debuglevel="lines,vars,source"
fork="true"
memoryinitialsize="1024m"
memorymaximumsize="1024m"
excludes="*Main.java"> <!--Don't use the Mains in testcasesupport -->
<classpath refid="project.classpath"/>
<include name="testcasesupport/*"/>
</javac>
<!-- Compile everything in this directory -->
<javac includeantruntime="false"
srcdir="${src}"
destdir="${build}"
debug="true"
debuglevel="lines,vars,source"
fork="true"
memoryinitialsize="1024m"
memorymaximumsize="1024m">
<classpath refid="project.classpath"/>
<include name="testcases/${basedir.basename}/*"/>
</javac>
</target>
<target name="jar" depends="compile" description="generate a jar file" >
<!-- Put everything in ${build} into the TestCases.jar file -->
<jar jarfile="${jar}" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="testcases.${basedir.basename}.Main"/>
</manifest>
</jar>
</target>
<target name="clean" description="clean up" >
<!-- Delete the ${build} directory tree -->
<delete dir="${build}"/>
<delete file="${war}"/>
<delete file="${jar}"/>
</target>
<target name="war" depends="compile">
<war destfile="${war}" webxml="web.xml">
<classes dir="${build}"/>
<fileset dir="../../../WebContent">
<exclude name="WEB-INF/web.xml"/>
</fileset>
</war>
</target>
<target name="war_with_libs" depends="compile">
<war destfile="${war}" webxml="web.xml">
<classes dir="${build}"/>
<fileset dir="../../../WebContent">
<exclude name="WEB-INF/web.xml"/>
</fileset>
<lib dir="../../../lib" />
</war>
</target>
</project>