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:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2011-08-11 22:57:34 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2011-08-11 22:57:34 +0400
commitb48b13d20fb89b511348bef723bac05755d12fee (patch)
tree530179ff116d8d45112b5e42670ef08c624f5c74 /build.xml
parent435c147aebd07c3b3556fd646af121e1e63cd88b (diff)
remove library/PHPExcel from build.xml
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 3 insertions, 5 deletions
diff --git a/build.xml b/build.xml
index 9beb3aa0d8..5365747755 100644
--- a/build.xml
+++ b/build.xml
@@ -38,7 +38,7 @@
<arg line="${source_comma_sep}
xml
codesize,design,naming,unusedcode
- --exclude test,build,PHPExcel,tcpdf,php-gettext
+ --exclude test,build,tcpdf,php-gettext
--reportfile ${basedir}/build/logs/pmd.xml" />
</exec>
</target>
@@ -48,7 +48,6 @@
<arg line="--log-pmd ${basedir}/build/logs/pmd-cpd.xml
--exclude test
--exclude build
- --exclude libraries/PHPExcel
--exclude libraries/tcpdf
--exclude libraries/php-gettext
${source}" />
@@ -60,17 +59,16 @@
<arg line="--log-csv ${basedir}/build/logs/phploc.csv
--exclude test
--exclude build
- --exclude libraries/PHPExcel
--exclude libraries/tcpdf
--exclude libraries/php-gettext
${source}" />
</exec>
</target>
- <target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding test, PHPExcel, tcpdf directories">
+ <target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding test, tcpdf directories">
<exec executable="phpcs">
<arg line="
- --ignore=*/PHPExcel/*,*/php-gettext/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/highcharts/*,*/openlayers/*,*/jquery/*,*/build/*
+ --ignore=*/php-gettext/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/highcharts/*,*/openlayers/*,*/jquery/*,*/build/*
--report=checkstyle
--report-file=${basedir}/build/logs/checkstyle.xml
--standard=PEAR