Phing > configuration > minor updates

This commit is contained in:
Meritoo
2019-04-03 11:21:29 +02:00
parent 312e721dc3
commit a90eeed583
3 changed files with 5 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ Common and useful classes, methods, exceptions etc.
# 1.0.2 # 1.0.2
1. Phing > remove old and unused tools 1. Phing > remove old and unused tools
2. Phing > configuration > minor updates
# 1.0.1 # 1.0.1

View File

@@ -24,11 +24,11 @@ cache.clearWithWarmup = false
# #
composer.download_command = bash ${project.basedir}/phing/composer-install.sh composer.download_command = bash ${project.basedir}/phing/composer-install.sh
# Path to composer executable or downloaded composer.phar file # Path to Composer executable or downloaded composer.phar file
# #
composer.path = ${project.basedir}/composer.phar composer.path = ${project.basedir}/composer.phar
# Path to php executable used by composer # Path to PHP executable used by Composer
# #
composer.php = php composer.php = php

View File

@@ -57,7 +57,7 @@
<fileset refid="sourcecode"/> <fileset refid="sourcecode"/>
<formatter type="checkstyle" outfile="${dir.reports}/checkstyle.xml"/> <formatter type="checkstyle" outfile="${dir.reports}/checkstyle.xml"/>
<formatter type="csv" outfile="${dir.reports}/checkstyle.csv"/> <formatter type="csv" outfile="${dir.reports}/checkstyle.csv"/>
<formatter type="summary" outfile="${dir.reports}/checkstyle_summary.txt"/> <formatter type="summary" outfile="${dir.reports}/checkstyle-summary.txt"/>
</phpcodesniffer> </phpcodesniffer>
</target> </target>
@@ -65,7 +65,7 @@
<target name="check:cpd" depends="build:prepare"> <target name="check:cpd" depends="build:prepare">
<phpcpd> <phpcpd>
<fileset refid="sourcecode"/> <fileset refid="sourcecode"/>
<formatter type="pmd" outfile="${dir.reports}/pmd-cpd.xml"/> <formatter type="pmd" outfile="${dir.reports}/copy-paste-detector.xml"/>
</phpcpd> </phpcpd>
</target> </target>