-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.xml
40 lines (31 loc) · 1.38 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
38
39
40
<?xml version="1.0"?>
<project name="pssht" description="Same as 'phing all'" default="all">
<property name="qa.coverage.force" value="false"/>
<!-- pssht uses a custom PHPUnit bootstrap script. -->
<property name="subfile.phpunit" value="phing/phpunit.xml"/>
<!-- pssht uses a custom stub. -->
<property name="phar.stub" value="bin/pssht"/>
<!-- Custom copyright. -->
<property name="doc_enduser.copyright" value="${doc_enduser.year}, François Poirotte"/>
<fileset dir="." id="phar.files">
<include name="src/**/*.php"/>
<include name="pssht.xml"/>
<include name="vendor/autoload.php"/>
<include name="vendor/composer/*.php"/>
<include name="vendor/erebot/plop/**/*.php"/>
<include name="vendor/symfony/dependency-injection/**/*.php"/>
<include name="vendor/symfony/config/**/*.php"/>
<include name="vendor/symfony/filesystem/**/*.php"/>
</fileset>
<fileset dir="src/" id="sources">
<include name="**/*.php"/>
</fileset>
<fileset dir="tests/" id="tests">
<include name="unit/**/*.php"/>
</fileset>
<target name="all" description="Main target -- Does nothing"/>
<target name="qa"
depends="qa_lint,qa_codesniffer,qa_duplicates,qa_test"
description="Run Qualify-Assurance (QA) tools"/>
<import file="vendor/erebot/buildenv/build.xml"/>
</project>