forked from siuying/quiz1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
82 lines (70 loc) · 2.54 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
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- WARNING: Eclipse auto-generated file.
Any modifications will be overwritten.
To include a user specific buildfile here, simply create one in the same
directory with the processing instruction <?eclipse.ant.import?>
as the first entry and export the buildfile again. -->
<project basedir="." default="build" name="JavaQuiz1">
<property environment="env" />
<property name="junit.output.dir" value="tests" />
<property name="debuglevel" value="source,lines,vars" />
<property name="target" value="1.6" />
<property name="source" value="1.6" />
<path id="JavaQuiz1.classpath">
<pathelement location="bin" />
<fileset dir="lib" casesensitive="yes">
<include name="**/*.jar"/>
</fileset>
</path>
<target name="init">
<mkdir dir="dest" />
<mkdir dir="bin" />
<mkdir dir="${junit.output.dir}" />
<copy includeemptydirs="false" todir="bin">
<fileset dir="src" excludes="**/*.launch, **/*.java" />
</copy>
</target>
<target name="clean">
<delete dir="bin" />
<delete dir="junit.output.dir" />
</target>
<target depends="clean" name="cleanall" />
<target depends="init" name="build">
<echo message="${ant.project.name}: ${ant.file}" />
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}" encoding="UTF-8">
<src path="src" />
<classpath refid="JavaQuiz1.classpath" />
</javac>
</target>
<target description="compile project with Eclipse compiler" name="build-eclipse-compiler">
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter" />
<antcall target="build" />
</target>
<target name="test" depends="build">
<mkdir dir="${junit.output.dir}" />
<junit printsummary="yes" haltonfailure="yes">
<classpath>
<pathelement location="bin"/>
</classpath>
<classpath refid="JavaQuiz1.classpath" />
<formatter type="xml"/>
<batchtest haltonerror="false" haltonfailure="false" fork="yes" todir="${junit.output.dir}">
<fileset dir="src">
<include name="**/*Test*.java"/>
<exclude name="**/Abstract*.java"/>
</fileset>
</batchtest>
</junit>
<junitreport todir="${junit.output.dir}">
<fileset dir="${junit.output.dir}">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" todir="${junit.output.dir}" />
</junitreport>
</target>
<target name="jar" depends="init,build">
<jar destfile="dest/quiz1.jar" basedir="bin">
<fileset dir="bin" excludes="**/*Test*.class" />
</jar>
</target>
</project>