-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
45 lines (33 loc) · 1.54 KB
/
build.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="test" default="test">
<property name="xspec.version" value="2.2.4"/>
<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-pagexml-pagecontent2tei.xsl"/>
<antcall target="test-xsl-usx-usx2tei.xsl"/>
<antcall target="test-xsl-usx-usx2tei-char-sigla.xsl"/>
</target>
<target name="test-xsl-pagexml-pagecontent2tei.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/pagexml/pagecontent2tei.xspec"/>
</antcall>
</target>
<target name="test-xsl-usx-usx2tei.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/usx/usx2tei.xspec"/>
</antcall>
</target>
<target name="test-xsl-usx-usx2tei-char-sigla.xsl">
<antcall target="xspec.xspec" inheritall="false">
<param name="xspec.xml" location="${basedir}/xsl/usx/usx2tei-char-sigla.xspec"/>
</antcall>
</target>
</project>