Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2011-08-17 18:56:04 +0400
committerMichal Čihař <michal@cihar.com>2011-08-17 18:56:04 +0400
commitd1684d6d965cbe2a029644c14871d668470dbad8 (patch)
treeb361d43394a8105355e65ab1ac169564b53559d7 /build.xml
parent79b5bd602e50cc5eff4c32c85df673f7eac94862 (diff)
Ignore another external lib
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 5365747755..d898a83f44 100644
--- a/build.xml
+++ b/build.xml
@@ -38,7 +38,7 @@
<arg line="${source_comma_sep}
xml
codesize,design,naming,unusedcode
- --exclude test,build,tcpdf,php-gettext
+ --exclude test,build,tcpdf,php-gettext,bfShapeFiles
--reportfile ${basedir}/build/logs/pmd.xml" />
</exec>
</target>
@@ -50,6 +50,7 @@
--exclude build
--exclude libraries/tcpdf
--exclude libraries/php-gettext
+ --exclude libraries/bfShapeFiles
${source}" />
</exec>
</target>
@@ -61,6 +62,7 @@
--exclude build
--exclude libraries/tcpdf
--exclude libraries/php-gettext
+ --exclude libraries/bfShapeFiles
${source}" />
</exec>
</target>
@@ -68,7 +70,7 @@
<target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding test, tcpdf directories">
<exec executable="phpcs">
<arg line="
- --ignore=*/php-gettext/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/highcharts/*,*/openlayers/*,*/jquery/*,*/build/*
+ --ignore=*/php-gettext/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/highcharts/*,*/openlayers/*,*/jquery/*,*/build/*,*/bfShapeFiles/*
--report=checkstyle
--report-file=${basedir}/build/logs/checkstyle.xml
--standard=PEAR