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