-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (20 loc) · 796 Bytes
/
build.xml
File metadata and controls
25 lines (20 loc) · 796 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
<project name="zf2-demo" default="help" basedir=".">
<import file="./vendor/continuousphp/aws-sdk-phing/tasks.xml" />
<if>
<available file="${project.basedir}/build.local.properties" />
<then>
<property file="${project.basedir}/build.local.properties" />
</then>
</if>
<property file="${project.basedir}/build.properties" />
<target name="help" description="List available targets">
<exec executable="vendor/bin/phing"
passthru="true">
<arg value="-l"/>
</exec>
</target>
<target name="provision-stack"
description="Provision a stack on AWS" />
<target name="setup"
description="Setup external dependencies and migrate data"/>
</project>