50 |
26 Feb 19 |
nicklas |
1 |
<project name="json-simple" default="main" basedir="."> |
50 |
26 Feb 19 |
nicklas |
2 |
<path id="runtime.path"> |
50 |
26 Feb 19 |
nicklas |
3 |
<fileset dir="lib"> |
50 |
26 Feb 19 |
nicklas |
4 |
<include name="*.jar"/> |
50 |
26 Feb 19 |
nicklas |
5 |
</fileset> |
50 |
26 Feb 19 |
nicklas |
6 |
<pathelement location="build/test"/> |
50 |
26 Feb 19 |
nicklas |
7 |
</path> |
50 |
26 Feb 19 |
nicklas |
8 |
|
50 |
26 Feb 19 |
nicklas |
9 |
<path id="compile.path"> |
50 |
26 Feb 19 |
nicklas |
10 |
<fileset dir="lib"> |
50 |
26 Feb 19 |
nicklas |
11 |
<include name="*.jar"/> |
50 |
26 Feb 19 |
nicklas |
12 |
</fileset> |
50 |
26 Feb 19 |
nicklas |
13 |
</path> |
50 |
26 Feb 19 |
nicklas |
14 |
|
50 |
26 Feb 19 |
nicklas |
15 |
<target name="main" depends="mkdir,compile,junit"> |
50 |
26 Feb 19 |
nicklas |
16 |
</target> |
50 |
26 Feb 19 |
nicklas |
17 |
|
50 |
26 Feb 19 |
nicklas |
18 |
<target name="clean"> |
50 |
26 Feb 19 |
nicklas |
19 |
<delete includeemptydirs="true"> |
50 |
26 Feb 19 |
nicklas |
20 |
<fileset dir="build/test" includes="**/*"/> |
50 |
26 Feb 19 |
nicklas |
21 |
<fileset dir="." includes="TEST-*.txt"/> |
50 |
26 Feb 19 |
nicklas |
22 |
</delete> |
50 |
26 Feb 19 |
nicklas |
23 |
</target> |
50 |
26 Feb 19 |
nicklas |
24 |
|
50 |
26 Feb 19 |
nicklas |
25 |
<target name="mkdir"> |
50 |
26 Feb 19 |
nicklas |
26 |
<mkdir dir="build/test"/> |
50 |
26 Feb 19 |
nicklas |
27 |
</target> |
50 |
26 Feb 19 |
nicklas |
28 |
|
50 |
26 Feb 19 |
nicklas |
29 |
<target name="compile"> |
50 |
26 Feb 19 |
nicklas |
30 |
<javac srcdir="test" |
50 |
26 Feb 19 |
nicklas |
31 |
destdir="build/test" |
50 |
26 Feb 19 |
nicklas |
32 |
includes="**/*.java" |
50 |
26 Feb 19 |
nicklas |
33 |
encoding="UTF-8" |
50 |
26 Feb 19 |
nicklas |
34 |
target="1.2" |
50 |
26 Feb 19 |
nicklas |
35 |
source="1.2"> |
50 |
26 Feb 19 |
nicklas |
36 |
<classpath refid="compile.path"/> |
50 |
26 Feb 19 |
nicklas |
37 |
</javac> |
50 |
26 Feb 19 |
nicklas |
38 |
</target> |
50 |
26 Feb 19 |
nicklas |
39 |
|
50 |
26 Feb 19 |
nicklas |
40 |
<target name="junit"> |
50 |
26 Feb 19 |
nicklas |
41 |
<junit> |
50 |
26 Feb 19 |
nicklas |
42 |
<classpath refid="runtime.path"/> |
50 |
26 Feb 19 |
nicklas |
43 |
<formatter type="plain"/> |
50 |
26 Feb 19 |
nicklas |
44 |
<test name="org.json.simple.Test"/> |
50 |
26 Feb 19 |
nicklas |
45 |
<test name="org.json.simple.parser.YylexTest"/> |
50 |
26 Feb 19 |
nicklas |
46 |
</junit> |
50 |
26 Feb 19 |
nicklas |
47 |
</target> |
50 |
26 Feb 19 |
nicklas |
48 |
</project> |