forked from drupal-composer/drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathbuild.xml
23 lines (15 loc) · 916 Bytes
/
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
<?xml version="1.0" encoding="UTF-8" ?>
<project name="My Drupal Project" default="help">
<!-- Import Phing targets specific to the local environment. -->
<import file="${project.basedir}/build.local.xml" optional="true" />
<!-- Import Phing targets specific to this project. -->
<import file="${project.basedir}/build.project.xml" optional="true" />
<!-- Import generic Phing targets that are used as defaults suitable for any Drupal project. -->
<import file="${project.basedir}/build.dist.xml" />
<!-- Import build properties specific to the local environment. -->
<property file="build.properties.local" />
<!-- Import build properties specific to this project. -->
<property file="build.properties" />
<!-- Import generic build properties that are used as defaults suitable for any Drupal project. -->
<property file="build.properties.dist" />
</project>