forked from twilio/twilio-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (24 loc) · 859 Bytes
/
build.xml
File metadata and controls
29 lines (24 loc) · 859 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
28
29
<project name="Twilio Rest Client" default="jar" basedir=".">
<property name="src.dir" value="${basedir}/src"/>
<property name="lib.dir" value="${basedir}/lib"/>
<property name="build.dir" value="${basedir}/build"/>
<path id="project.class.path">
<fileset dir="${lib.dir}">
<include name="*.jar"/>
</fileset>
</path>
<target name="jar" depends="compile">
<jar destfile="${basedir}/twiliorest.jar"
basedir="${build.dir}"/>
</target>
<target name="compile">
<mkdir dir="${build.dir}"/>
<javac srcdir="${src.dir}" destdir="${build.dir}">
<classpath refid="project.class.path"/>
</javac>
</target>
<target name="clean">
<delete dir="${build.dir}"/>
<delete file="twiliorest.jar"/>
</target>
</project>