-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
80 lines (63 loc) · 2.9 KB
/
build.xml
File metadata and controls
80 lines (63 loc) · 2.9 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="test" default="test">
<property file="project.properties"/>
<property name="xspec.project.dir" value="target/dependency/xspec-${xspec.version}"/>
<property name="xspec.properties" location="../../system.properties"/>
<property name="xspec.project.dir" location="../../xspec"/>
<include file="${xspec.project.dir}/build.xml"/>
<echo>basedir: ${basedir}</echo>
<echo>using XSpec ${xspec.version}</echo>
<echo>classpath: ${java.class.path}</echo>
<echo>ext.dirs: ${java.ext.dirs}</echo>
<!-- default rule: run all tests -->
<target name="test">
<antcall target="test-xsl-dts.xsl"/>
<antcall target="test-xsl-navigation.xsl"/>
<antcall target="test-xsl-document.xsl"/>
<antcall target="test-test-post-proc-apply.xsl"/>
<antcall target="test-test-post-proc-fun.xsl"/>
<antcall target="test-test-post-proc-call.xsl"/>
<antcall target="test-xsl-uri-templates-query-parameters.xsl"/>
<antcall target="test-xsl-uri-templates-path-parameters.xsl"/>
</target>
<target name="test-xsl-dts.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/dts.xspec"/>
</antcall>
</target>
<target name="test-xsl-navigation.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/navigation.xspec"/>
</antcall>
</target>
<target name="test-xsl-document.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/document.xspec"/>
</antcall>
</target>
<target name="test-test-post-proc-apply.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/test/post-proc-apply.xspec"/>
</antcall>
</target>
<target name="test-test-post-proc-fun.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/test/post-proc-fun.xspec"/>
</antcall>
</target>
<target name="test-test-post-proc-call.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/test/post-proc-call.xspec"/>
</antcall>
</target>
<target name="test-xsl-uri-templates-query-parameters.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/uri-templates/query-parameters.xspec"/>
</antcall>
</target>
<target name="test-xsl-uri-templates-path-parameters.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/uri-templates/path-parameters.xspec"/>
</antcall>
</target>
</project>