-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
41 lines (31 loc) · 848 Bytes
/
build.xml
File metadata and controls
41 lines (31 loc) · 848 Bytes
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
<project>
<path id="project.class.path">
<pathelement location="build"/>
<pathelement location="lib/junit-4.8.2.jar"/>
</path>
<target name="compile">
<javac srcdir="src"
destdir="build"
includeantruntime="false">
<classpath refid="project.class.path" />
</javac>
</target>
<target name="clean">
<delete>
<fileset dir="build" includes="*.class"/>
</delete>
</target>
<target name="run" depends="compile">
<java classname="Rational">
<classpath refid="project.class.path" />
</java>
</target>
<target name="javadoc" depends="compile" description="generate javadoc">
<javadoc destdir="docs/javadoc">
<fileset dir="src" >
<include name="*.java"/>
</fileset>
<classpath refid="project.class.path" />
</javadoc>
</target>
</project>