|
6 | 6 | <property name="phpcpd" value="${basedir}/vendor/bin/phpcpd"/> |
7 | 7 | <property name="phpcbf" value="${basedir}/vendor/bin/phpcbf"/> |
8 | 8 | <property name="phpcs" value="${basedir}/vendor/bin/phpcs"/> |
9 | | - <property name="phpdox" value="${basedir}/vendor/bin/phpdox"/> |
10 | 9 | <property name="phploc" value="${basedir}/vendor/bin/phploc"/> |
11 | 10 | <property name="phpmd" value="${basedir}/vendor/bin/phpmd"/> |
12 | 11 | <property name="composer" value="composer"/> <!-- composer should be installed global --> |
13 | 12 | <property name="phpunit" value="${basedir}/vendor/bin/phpunit"/> |
14 | 13 |
|
15 | 14 | <target name="full-build" |
16 | | - depends="prepare,composer,static-analysis,phpunit,phpdox,-check-failure" |
| 15 | + depends="prepare,composer,static-analysis,phpunit,-check-failure" |
17 | 16 | description="Performs static analysis, runs the tests, and generates project documentation"/> |
18 | 17 |
|
19 | 18 | <target name="precommit" |
20 | 19 | depends="prepare,composer,phpunit,phpcbf,phpcs,phpcpd,phpmd,displayresult" |
21 | 20 | description="Performs precommit checks"/> |
22 | 21 |
|
23 | 22 | <target name="full-build-parallel" |
24 | | - depends="prepare,composer,static-analysis-parallel,phpunit,phpdox,-check-failure" |
| 23 | + depends="prepare,composer,static-analysis-parallel,phpunit,-check-failure" |
25 | 24 | description="Performs static analysis (executing the tools in parallel), runs the tests, and generates project documentation"/> |
26 | 25 |
|
27 | 26 | <target name="travis" |
28 | | - depends="prepare,lint,phpunit-travis" |
| 27 | + depends="prepare,composer,lint,phpunit-travis" |
29 | 28 | description="Build specific for Travis CI" /> |
30 | 29 |
|
31 | 30 | <target name="quick-build" |
|
59 | 58 | <delete dir="${basedir}/build/coverage"/> |
60 | 59 | <delete dir="${basedir}/build/logs"/> |
61 | 60 | <delete dir="${basedir}/build/pdepend"/> |
62 | | - <delete dir="${basedir}/build/phpdox"/> |
63 | 61 | <property name="clean.done" value="true"/> |
64 | 62 | </target> |
65 | 63 |
|
|
71 | 69 | <mkdir dir="${basedir}/build/coverage"/> |
72 | 70 | <mkdir dir="${basedir}/build/logs"/> |
73 | 71 | <mkdir dir="${basedir}/build/pdepend"/> |
74 | | - <mkdir dir="${basedir}/build/phpdox"/> |
75 | 72 | <property name="prepare.done" value="true"/> |
76 | 73 | </target> |
77 | 74 |
|
|
272 | 269 | <property name="phpunit.done" value="true"/> |
273 | 270 | </target> |
274 | 271 |
|
275 | | - <target name="phpdox" |
276 | | - unless="phpdox.done" |
277 | | - depends="phploc-ci,phpcs-ci,phpmd-ci" |
278 | | - description="Generate project documentation using phpDox"> |
279 | | - <exec executable="${phpdox}" dir="${basedir}/build" taskname="phpdox"/> |
280 | | - |
281 | | - <property name="phpdox.done" value="true"/> |
282 | | - </target> |
283 | | - |
284 | 272 | <target name="displayresult" |
285 | 273 | description="Display the coverage"> |
286 | 274 | <exec executable="/usr/bin/open" dir="${basedir}/build" spawn="true"> |
|
0 commit comments