-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.default.properties
34 lines (27 loc) · 1.25 KB
/
build.default.properties
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
#####################################################
## This project is using the ##
## PHP code quality project (phpcq) ##
## ##
## https://github.com/phpcq/phpcq ##
#####################################################
phpcs.standard=${basedir}/vendor/phpcq/coding-standard/phpcs/PhpCodeQuality/ruleset.xml
phpcs.customflags=--report=checkstyle --report-file=${basedir}/build/logs/checkstyle.xml
pdepend.output=\
--jdepend-xml=${basedir}/build/logs/jdepend.xml \
--jdepend-chart=${basedir}/build/pdepend/dependencies.svg \
--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg
phpcpd.customflags=--log-pmd ${basedir}/build/logs/pmd-cpd.xml
phploc.output=\
--log-csv=${basedir}/build/logs/phploc.csv \
--log-xml=${basedir}/build/logs/phploc.xml
phpmd.ruleset=${basedir}/vendor/phpcq/coding-standard/phpmd/ruleset.xml
phpmd.excluded=
phpmd.format=xml
phpmd.customflags=--reportfile ${basedir}/build/logs/pmd.xml
pdepend.excluded=
phpunit.customflags=\
--coverage-html build/coverage/ \
--coverage-clover build/logs/clover.xml \
--coverage-crap4j build/logs/crap4j.xml \
--coverage-text --colors=never \
--log-junit build/logs/junit.xml