Skip to content
Snippets Groups Projects
Commit dbe2598b authored by llaffont's avatar llaffont
Browse files

Correction metriccs cosmogramme

parent d8dbb698
Branches
Tags
No related merge requests found
......@@ -58,7 +58,7 @@
<exec executable="phploc">
<arg value="--log-csv" />
<arg value="${basedir}/build/logs/phploc.csv" />
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
</exec>
</target>
......@@ -68,14 +68,14 @@
<arg value="--jdepend-xml=${basedir}/build/logs/jdepend.xml" />
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg" />
<arg value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg" />
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
</exec>
</target>
<target name="phpmd"
description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="phpmd">
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
<arg value="text" />
<arg value="${basedir}/build/phpmd.xml" />
</exec>
......@@ -84,7 +84,7 @@
<target name="phpmd-ci"
description="Perform project mess detection using PHPMD creating a log file for the continuous integration server">
<exec executable="phpmd">
<arg path="${basedir}/src" />
<arg path="${basedir}/phpr" />
<arg value="xml" />
<arg value="${basedir}/build/phpmd.xml" />
<arg value="--reportfile" />
......@@ -96,7 +96,7 @@
description="Find coding standard violations using PHP_CodeSniffer and print human readable output. Intended for usage on the command line before committing.">
<exec executable="phpcs">
<arg value="--standard=${basedir}/build/phpcs.xml" />
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
</exec>
</target>
......@@ -106,7 +106,7 @@
<arg value="--report=checkstyle" />
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml" />
<arg value="--standard=${basedir}/build/phpcs.xml" />
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
</exec>
</target>
......@@ -114,7 +114,7 @@
<exec executable="phpcpd">
<arg value="--log-pmd" />
<arg value="${basedir}/build/logs/pmd-cpd.xml" />
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
</exec>
</target>
......@@ -122,7 +122,7 @@
description="Generate API documentation using PHPDocumentor">
<exec executable="phpdoc">
<arg value="--directory" />
<arg path="${basedir}/src" />
<arg path="${basedir}/php" />
<arg value="--target" />
<arg path="${basedir}/build/api" />
</exec>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment