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>2016-02-17 17:05:16 +0300
committerMichal Čihař <michal@cihar.com>2016-02-22 10:04:15 +0300
commit315e7d398278dcadfd79d19fcae54203d01c9a06 (patch)
tree3182ea3041be35e49c14ce242b8df85bb2bd55d8 /build.xml
parent08277b052b00ce7e839cbdaf631895b78bf1aac3 (diff)
Remove no longer needed excludes from build configuration
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml10
1 files changed, 2 insertions, 8 deletions
diff --git a/build.xml b/build.xml
index 68783c025b..962fb34333 100644
--- a/build.xml
+++ b/build.xml
@@ -55,7 +55,7 @@
<arg line="${source_comma_sep}
xml
codesize,design,naming,unusedcode
- --exclude test,build,tcpdf,php-gettext,bfShapeFiles,PMAStandard,phpseclib,recaptchalib.php,vendor,sql-parser
+ --exclude test,build,bfShapeFiles,PMAStandard,recaptchalib.php,vendor
--reportfile '${basedir}/build/logs/pmd.xml'" />
</exec>
</target>
@@ -67,12 +67,9 @@
--exclude PMAStandard
--exclude build
--exclude vendor
- --exclude libraries/tcpdf
--exclude libraries/php-gettext
--exclude libraries/bfShapeFiles
- --exclude libraries/phpseclib
--exclude libraries/plugins/auth/recaptcha/recaptchalib.php
- --exclude libraries/sql-parser
${source}" />
</exec>
</target>
@@ -84,12 +81,9 @@
--exclude PMAStandard
--exclude build
--exclude vendor
- --exclude libraries/tcpdf
--exclude libraries/php-gettext
--exclude libraries/bfShapeFiles
- --exclude libraries/phpseclib
--exclude libraries/plugins/auth/recaptcha/recaptchalib.php
- --exclude libraries/sql-parser
${source}" />
</exec>
</target>
@@ -97,7 +91,7 @@
<target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding third party libraries">
<exec executable="phpcs">
<arg line="
- --ignore=*/php-gettext/*,*/vendor/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/openlayers/*,*/jquery/*,*/jqplot/*,*/build/*,*/bfShapeFiles/*,*/PMAStandard/*,*/phpseclib/*,*/recaptcha/*,*/sql-parser/*
+ --ignore=*/php-gettext/*,*/vendor/*,*/canvg/*,*/codemirror/*,*/openlayers/*,*/jquery/*,*/jqplot/*,*/build/*,*/bfShapeFiles/*,*/PMAStandard/*,*/recaptcha/*
--report=checkstyle
--extensions=php
--report-file='${basedir}/build/logs/checkstyle.xml'