[Japi-cvs] SF.net SVN: japi:[1374] common/trunk/commonBuild.xml
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-07-26 10:41:58
|
Revision: 1374 http://japi.svn.sourceforge.net/japi/?rev=1374&view=rev Author: christianhujer Date: 2009-07-26 10:41:50 +0000 (Sun, 26 Jul 2009) Log Message: ----------- Fix issue with JUnit for PMD. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-07-25 14:26:45 UTC (rev 1373) +++ common/trunk/commonBuild.xml 2009-07-26 10:41:50 UTC (rev 1374) @@ -542,6 +542,9 @@ <target name="pmd" description="Performs quality checks using PMD." depends="compile,getPmd"> <taskdef name="pmd" classpath="${commonPath}/antlib.auto/pmd-4.2.5.jar" classname="net.sourceforge.pmd.ant.PMDTask"/> <pmd shortFilenames="true" failOnError="true" failOnRuleViolation="true"> + <auxclasspath refid="class.path" /> + <auxclasspath location="${commonPath}/antlib.auto/junit.jar" /> + <auxclasspath location="classes/production/${module.shortname}" /> <ruleset>${commonPath}/pmd_checks.xml</ruleset> <formatter type="text" toConsole="true" /> <fileset dir="src/prj"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |