forked from dermidgen/openpasl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
42 lines (26 loc) · 797 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0"?>
<!--
OpenPASL
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
@copyright Copyright (c) 2008 Danny Graham, Scott Thundercloud. (http://code.google.com/p/openpasl)
@license <http://www.opensource.org/licenses/bsd-license.php> New BSD License
Requirements:
- PHP 5.1.4
- Phing 2.2.0
- PHPDocumentor 1.3.1
Usage:
phing [ <options> ] [ <targets> ]
Options:
-D<property>={value}
Override a property in build.properties
-->
<project name="openpasl" default="all" basedir="./">
<property file="build.properties"/>
<target name="all" depends="docs">
</target>
<target name="docs">
<phing phingfile="${path.doc}/build.xml" haltonfailure="true"/>
</target>
</project>