-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.xml
More file actions
21 lines (18 loc) · 749 Bytes
/
test.xml
File metadata and controls
21 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<project name="test" default="run" basedir="dist">
<description>This Ant Buildfile uploads itself to Dropbox</description>
<taskdef name="dropbox" classname="com.embege.antdropbox.AntDropbox">
<classpath>
<pathelement location="ant-dropbox.jar" />
<pathelement location="json_simple-1.1.jar" />
<pathelement location="httpmime-4.0.3.jar"/>
<pathelement location="httpcore-4.0.1.jar"/>
<pathelement location="httpclient-4.0.3.jar"/>
<pathelement location="dropbox-java-sdk-1.3.1.jar"/>
<pathelement location="commons-logging-1.1.1.jar"/>
</classpath>
</taskdef>
<target name="run">
<dropbox file="../test.xml" folder="uploads" />
</target>
</project>