forked from stevej/thrift-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
20 lines (17 loc) · 823 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!-- CONFIG: change example and description to fit your project -->
<project name="admin" default="package" xmlns:ivy="antlib:org.apache.ivy.ant">
<description>thrift admin interface for scala servers</description>
<!-- override creation of a jar with a version number in the name -->
<property name="dist.name" value="admin" />
<!--property name="dist.build_name" value="true" /-->
<property name="ivy.settings.file" value="${basedir}/ivy/ivysettings.xml" />
<import file="${basedir}/ant/bootstrap.xml" />
<property name="install.dir" location="/opt/local/example" />
<target name="install" depends="package">
<mkdir dir="${install.dir}" />
<copy todir="${install.dir}">
<fileset dir="${dist.dir}" includes="**" />
</copy>
</target>
</project>