Skip to content

Commit 45f8edd

Browse files
committed
added build script
1 parent c5a8f59 commit 45f8edd

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

build.xml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" ?>
2+
3+
<project default="help">
4+
5+
<target name="help">
6+
<echo>ant build just build it, already!</echo>
7+
</target>
8+
9+
<target name="init">
10+
</target>
11+
12+
<target name='build'>
13+
<mkdir dir="build"/>
14+
<javac
15+
srcdir="src"
16+
classpath="lib/XMLLib.jar"
17+
destdir="build"
18+
>
19+
</javac>
20+
</target>
21+
22+
<target name="clean">
23+
<delete dir="build"/>
24+
</target>
25+
26+
</project>
27+

lib/XMLLib.jar

17.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)