-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
24 lines (24 loc) · 1.16 KB
/
build.xml
File metadata and controls
24 lines (24 loc) · 1.16 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
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." name="gospels">
<description>Semantic analysis of the Gospels (Greek and Latin) by the WoPoss project</description>
<property name="output.dir" value="output"></property>
<property name="saxonJar" value="lib/saxon.jar"></property>
<target name="align">
<mkdir dir="${output.dir}"/>
<java fork="true" classname="net.sf.saxon.Query" classpath="${saxonJar}" failonerror="true">
<arg value="-q:scripts/alignment.xquery"/>
<arg value="-o:${output.dir}/aligment-results.tsv"/>
</java>
</target>
<target name="analysis">
<mkdir dir="${output.dir}"/>
<java fork="true" classname="net.sf.saxon.Query" classpath="${saxonJar}" failonerror="true">
<arg value="-q:scripts/tabular_markers.xquery"/>
<arg value="-o:${output.dir}/potential_markers.tsv"/>
</java>
<java fork="true" classname="net.sf.saxon.Query" classpath="${saxonJar}" failonerror="true">
<arg value="-q:scripts/tabular_modality.xquery"/>
<arg value="-o:${output.dir}/modal_passages.tsv"/>
</java>
</target>
</project>