We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a8f59 commit 45f8eddCopy full SHA for 45f8edd
build.xml
@@ -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
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
21
22
+ <target name="clean">
23
+ <delete dir="build"/>
24
25
26
+</project>
27
lib/XMLLib.jar
17.5 KB
0 commit comments