forked from PerseusDL/tei-conversion-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
26 lines (24 loc) · 806 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<project default="build" name="canonical-latinLit">
<xmlproperty file="expath-pkg.xml"/>
<property name="root.dir" value="."/>
<property name="param.source" value="cts"/>
<property name="saxon.path" value="/usr/share/java/saxon-6.5.5.jar"/>
<path id="saxon-classpath">
<pathelement location=""/>
</path>
<target name="fix-workurn">
<xslt
style="${root.dir}/xslt/fix-workUrn.xsl"
destdir="${param.source}/../ant-result"
basedir="${param.source}"
includes="**/__cts__.xml"
extension=".xml"
filenameparameter="filename"
filedirparameter="filedir"
force="true"
processor="trax"
classpath="${saxon.path}">
</xslt>
</target>
</project>