-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
41 lines (28 loc) · 1.23 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
41
<?xml version="1.0" encoding="UTF-8"?>
<project name="project" default="final" basedir=".">
<import file="build/initialize.xml"/>
<import file="build/phplint.xml"/>
<import file="build/phpcs.xml"/>
<import file="build/phploc.xml"/>
<import file="build/phpcpd.xml"/>
<import file="build/pmd.xml"/>
<import file="build/phpunit.xml"/>
<import file="build/pdepend.xml"/>
<import file="build/phpdoc.xml"/>
<import file="build/debian.xml"/>
<import file="build/tarball.xml"/>
<property name="description" value="Description"/>
<property name="homepage" value="http://one2team.ru/project/*"/>
<property name="maintainer" value="Johnny Funt"/>
<property name="destination-source" value="/var/www/"/>
<target name="phase1" depends="properties"></target>
<!-- Source code checks -->
<target name="phase2" depends="phase1, phplint.check, phpcpd.check"></target>
<!-- Tests & docs -->
<target name="phase3" depends="phase2"></target>
<!-- Metrics -->
<target name="phase4" depends="phase3, phploc.analyze"></target>
<!-- Packaging -->
<target name="phase5" depends="phase4, debian.make"></target>
<target name="final" depends="phase5"></target>
</project>