forked from ScottOaks/JavaPerformanceTuning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
32 lines (27 loc) · 739 Bytes
/
build.xml
File metadata and controls
32 lines (27 loc) · 739 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
<?xml version="1.0"?>
<project name="SampleFinalizer" default="jar">
<target name="init">
<mkdir dir="classes"/>
<mkdir dir="jars"/>
</target>
<target name="compile" depends="init">
<property environment="env"/>
<javac includeantruntime="false" srcdir="src"
debug="true" destdir="classes">
</javac>
</target>
<target name="jar" depends="compile">
<jar jarfile="jars/finalizer.jar">
<manifest>
<attribute name="Main-Class" value="net.sdo.TestCleanup"/>
</manifest>
<fileset dir="classes" includes="**/*.class"/>
</jar>
</target>
<target name="clean">
<delete>
<fileset dir="classes"/>
<fileset dir="jars"/>
</delete>
</target>
</project>