-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
37 lines (32 loc) · 1.04 KB
/
build.xml
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
34
35
36
37
<project name="dlrs" default="test" basedir="." xmlns:sf="antlib:com.salesforce">
<property file="build.properties"/>
<property environment="env"/>
<target name="deployRunAllTests">
<sf:deploy username="${sf.username}"
password="${sf.password}"
serverurl="${sf.serverurl}"
runAllTests="true"
logType="Detail"
deployRoot="rolluptool/src"
maxPoll="${sf.maxPoll}" />
</target>
<target name="deployRunNoTests">
<sf:deploy username="${sf.username}"
password="${sf.password}"
serverurl="${sf.serverurl}"
runAllTests="false"
logType="Detail"
deployRoot="rolluptool/src"
maxPoll="${sf.maxPoll}" />
</target>
<target name="validateAllTests">
<sf:deploy username="${sf.username}"
password="${sf.password}"
serverurl="${sf.serverurl}"
runAllTests="true"
logType="Detail"
deployRoot="src"
maxPoll="${sf.maxPoll}"
checkOnly="true" />
</target>
</project>