-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.xml
25 lines (21 loc) · 813 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
<project name="OWL verbalizer" default="dist" basedir=".">
<description>OWL verbalizer build file</description>
<property name="dist" location="dist"/>
<target name="init">
<!-- <tstamp><format property="build.time" pattern="yyMMdd-HHmm"/></tstamp> -->
<tstamp><format property="build.time" pattern="yyyyMMdd"/></tstamp>
<mkdir dir="${dist}"/>
</target>
<target name="dist" depends="init" description="Generate the zip-file.">
<zip
destfile="${dist}/owl_verbalizer-${build.time}.zip"
basedir="."
includes="**"
excludes="ontologies/**, dist/**, .git/**, tools/**, hidden/**, run_tests.py, build.xml, test.sh, lexicon_with_assert.pl, *.exe"
/>
</target>
<target name="clean" description="Clean up.">
<delete dir="${dist}"/>
<delete file="owl_to_ace.exe"/>
</target>
</project>