-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.xml
65 lines (57 loc) · 2.52 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
<project name="FinancialFormulas" basedir="." default="main">
<property name="dir.src" value="main/java/"/>
<property name="dir.test" value="test/java/"/>
<property name="dir.build" value="build"/>
<property name="dir.classes" value="${dir.build}/classes"/>
<property name="dir.jar" value="${dir.build}/jar"/>
<property name="dir.testclasses" value="${dir.build}/test-classes"/>
<property name="dir.testresults" value="${dir.build}/test-results"/>
<property name="dir.lib" value="lib"/>
<property name="junit.file" value="${dir.lib}/junit-4.12.jar"/>
<property name="hamcrest.file" value="${dir.lib}/hamcrest-all-1.3.jar"/>
<property name="main-class" value="srbrettle.financialformulas.FinancialFormulas"/>
<target name="clean">
<delete dir="${dir.build}"/>
</target>
<target name="compile">
<mkdir dir="${dir.classes}"/>
<javac srcdir="${dir.src}" destdir="${dir.classes}"/>
</target>
<target name="test" depends="compile">
<mkdir dir="${dir.testclasses}"/>
<javac srcdir="${dir.test}" destdir="${dir.testclasses}">
<classpath>
<pathelement location="${dir.classes}"/>
<pathelement location="${junit.file}"/>
<pathelement location="${hamcrest.file}"/>
</classpath>
</javac>
<mkdir dir="${dir.testresults}"/>
<junit haltonfailure="no" printsummary="on">
<classpath >
<pathelement location="${dir.classes}"/>
<pathelement location="${junit.file}"/>
<pathelement location="${hamcrest.file}"/>
<pathelement location="${dir.testclasses}"/>
</classpath>
<formatter type="brief" usefile="false"/>
<formatter type="xml" />
<batchtest todir="${dir.testresults}" >
<fileset dir="${dir.testclasses}" includes="**/*Test.class"/>
</batchtest>
</junit>
</target>
<target name="jar" depends="compile">
<mkdir dir="${dir.jar}"/>
<jar destfile="${dir.jar}/${ant.project.name}.jar" basedir="${dir.classes}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java jar="${dir.jar}/${ant.project.name}.jar" fork="true"/>
</target>
<target name="clean-build" depends="clean,jar"/>
<target name="main" depends="clean,run"/>
</project>