-
Notifications
You must be signed in to change notification settings - Fork 63
/
build.xml
30 lines (25 loc) · 1.17 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
<project name="jsword" default="all">
<!-- This build uses the core build targets -->
<import file="core.xml" />
<!--=======================================================================-->
<!-- override -->
<property name="website.jsword.dir" value="${dest.install.web.dir}"/>
<!-- override -->
<property name="package.jsword.dir" value="${dest.install.pkg.dir}"/>
<!--=======================================================================
== Override the prepare target to get dependency jars.
=========================================================================-->
<target name="prepare"
description="Prepare the build by copying needed jars and files."
depends="ivy, resource.main, resource.test">
<echo message="Done getting 3-rd Party dependencies." />
</target>
<!--=======================================================================
== When we clean jsword, we also have to delete the keystore file.
=========================================================================-->
<target name="clean.extra"
description="Remove the target directory"
depends="init, clean.dependency">
<delete dir="${keystore.file}" />
</target>
</project>