From 1c5183b90dff7b987494a58f4d14e889b46292af Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 27 Jun 2012 10:58:39 -0400 Subject: [PATCH] Fixed paths. --- build.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index 5fd5ede0b3e..4477ced07b0 100644 --- a/build.xml +++ b/build.xml @@ -32,13 +32,12 @@ defaultpackagename="VuFind" output="HTML:Smarty:PHP"> <fileset dir="."> - <include name="application/**/*.php" /> - <include name="library/VF/**/*.php" /> + <include name="module/VuFind/src/**/*.php" /> </fileset> </phpdoc> <!-- PHP CodeSniffer --> - <exec command="phpcs --standard=PEAR --extensions=php --report=checkstyle ${srcdir}/application ${srcdir}/library/VF > ${builddir}/reports/checkstyle.xml" escape="false" /> + <exec command="phpcs --standard=PEAR --extensions=php --report=checkstyle ${srcdir}/module/VuFind/src > ${builddir}/reports/checkstyle.xml" escape="false" /> <!-- PHPUnit --> <exec dir="${srcdir}/tests" command="phpunit -dzend.enable_gc=0 --log-junit ${builddir}/reports/phpunit.xml --coverage-clover ${builddir}/reports/coverage/clover.xml --coverage-html ${builddir}/reports/coverage/" outputProperty="PHPUNITOUTPUT" /> -- GitLab