diff --git a/pmd/docs/ant.html b/pmd/docs/ant.html deleted file mode 100644 index c8cbcc93c6..0000000000 --- a/pmd/docs/ant.html +++ /dev/null @@ -1,51 +0,0 @@ - -Ant and PMD - -

PMD

-

Description

-Runs a set of PMD rules on a set of files and generates a report. -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
reportfileThe file to which the report is written.Yes
verboseVerbose output - just the name of each file processed - Defaults to the current directory.Yes
rulesettypeThe set of rules to use (all, general, cougaar)Yes
formatThe report format (xml, text)Yes
-
-

Examples

-
-    <target name="pmd">
-        <taskdef name="pmd" classname="net.sourceforge.pmd.PMDTask"/>
-        <pmd reportFile="c:\foo.txt" verbose="false" rulesettype="general" format="xml">
-            <fileset dir="c:\j2sdk1.4.0\src\">
-                <include name="**/*.java"/>
-            </fileset>
-        </pmd>
-    </target>
-
- - - \ No newline at end of file