forked from eeditiones/tei-publisher-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
19 lines (19 loc) · 771 Bytes
/
build.xml
File metadata and controls
19 lines (19 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<project default="all" name="tei-publisher-lib">
<xmlproperty file="expath-pkg.xml" />
<property name="project.version" value="${package(version)}" />
<property name="project.app" value="tei-publisher-lib" />
<property name="build.dir" value="build" />
<target name="all" depends="xar" />
<target name="rebuild" depends="clean,all" />
<target name="clean">
<delete dir="${build.dir}" failonerror="false" />
</target>
<target name="xar" depends="clean" >
<mkdir dir="${build.dir}" />
<zip basedir="." destfile="${build.dir}/${project.app}.xar">
<exclude name="${build.dir}/**" />
<exclude name=".github/**" />
</zip>
</target>
</project>