-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
27 lines (22 loc) · 979 Bytes
/
build.xml
File metadata and controls
27 lines (22 loc) · 979 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
SwordLord.com, gozer
Version Number : $Revision: 1.00 $
Date of last edit : $Date: 2017/03/03 $
-->
<project name="gozer" default="resolve" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
<description>${ant.project.name} project master build file</description>
<property name="masterbuild.dir" location="${basedir}"/>
<!-- ================================================================= -->
<!-- === resolve all dependencies === -->
<!-- =================================================================-->
<target name="resolve" description="--> retrieve dependencies with ivy">
<ivy:retrieve pattern="lib/jar/[artifact](-[classifier]).[ext]"/>
</target>
<target name="clean" description="Remove build directories">
<delete dir="lib"/>
</target>
<target name="clean-all" depends="clean" description="clean ivy cache">
<ivy:cleancache />
</target>
</project>