forked from mattandneil/aws-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
33 lines (28 loc) · 1.03 KB
/
build.xml
File metadata and controls
33 lines (28 loc) · 1.03 KB
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
31
32
33
<project default="usage" basedir="." xmlns:sf="antlib:com.salesforce">
<taskdef uri="antlib:com.salesforce" classpath="lib/salesforce_ant_36.0/ant-salesforce.jar" />
<property file="build.properties"/>
<property environment="env"/>
<target name="retrieve" description="Retrieves AwsSdk package components.">
<sf:retrieve
username="${awssdk.username}"
password="${awssdk.password}"
serverurl="${awssdk.serverurl}"
retrieveTarget="src"
packageNames="Amazon Web Services SDK"
/>
</target>
<target name="deploy" description="Deploys AwsSdk package components.">
<sf:deploy
username="${awssdk.username}"
password="${awssdk.password}"
serverurl="${awssdk.serverurl}"
deployRoot="src"
/>
</target>
<target name="usage">
<java classname="org.apache.tools.ant.Main">
<arg value="-projecthelp"/>
<arg value="-quiet"/>
</java>
</target>
</project>