Package org.apache.maven.plugins.pmd
Class AbstractPmdReport
java.lang.Object
org.apache.maven.plugin.AbstractMojo
org.apache.maven.reporting.AbstractMavenReport
org.apache.maven.plugins.pmd.AbstractPmdReport
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo,org.apache.maven.reporting.MavenMultiPageReport,org.apache.maven.reporting.MavenReport
public abstract class AbstractPmdReport
extends org.apache.maven.reporting.AbstractMavenReport
Base class for the PMD reports.
- Version:
- $Id$
- Author:
- Brett Porter
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanDeprecated.protected StringFile that lists classes and rules to be excluded from failures.protected Map<File,PmdFileInfo> The files that are being analyzed.protected StringSet the output format type, in addition to the HTML report.protected booleanRun PMD on the tests.protected booleanWhether to include the xml files generated by PMD/CPD in the site.protected FileThe output directory for the final HTML report.protected org.apache.maven.project.MavenProjectThe project to analyse.protected List<org.apache.maven.project.MavenProject>The projects in the reactor for aggregation report.protected org.apache.maven.execution.MavenSessionThe current build session instance.protected booleanRedirect PMD log into maven log out.protected booleanSkip the PMD/CPD report generation if there are no violations or duplications found.protected FileThe output directory for the intermediate XML report.Fields inherited from interface org.apache.maven.reporting.MavenReport
CATEGORY_PROJECT_INFORMATION, CATEGORY_PROJECT_REPORTS, ROLEFields inherited from interface org.apache.maven.plugin.Mojo
ROLE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanprotected StringconstructXRefLocation(boolean test) protected Stringprotected Collection<org.apache.maven.project.MavenProject>protected Map<File,PmdFileInfo> Convenience method to get the list of files where the PMD tool will be executedprotected Stringprotected StringGets the effective reporting output files encoding.protected org.apache.maven.project.MavenProjectprotected org.apache.maven.doxia.siterenderer.Rendererprotected Stringprotected final org.apache.maven.toolchain.Toolchainprotected booleanprotected booleanisXml()Methods inherited from class org.apache.maven.reporting.AbstractMavenReport
closeReport, execute, executeReport, generate, generate, generate, getCategoryName, getInputEncoding, getReportOutputDirectory, getSink, getSinkFactory, isExternalReport, setReportOutputDirectoryMethods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContextMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.maven.reporting.MavenReport
getDescription, getName, getOutputName
-
Field Details
-
targetDirectory
The output directory for the intermediate XML report. -
outputDirectory
@Parameter(property="project.reporting.outputDirectory", required=true) protected File outputDirectoryThe output directory for the final HTML report. Note that this parameter is only evaluated if the goal is run directly from the command line or during the default lifecycle. If the goal is run indirectly as part of a site generation, the output directory configured in the Maven Site Plugin is used instead. -
format
Set the output format type, in addition to the HTML report. Must be one of: "none", "csv", "xml", "txt" or the full class name of the PMD renderer to use. See the net.sourceforge.pmd.renderers package javadoc for available renderers. XML is produced in any case, since this format is needed for the check goals (pmd:check, pmd:aggregator-check, pmd:cpd-check, pmd:aggregator-cpd-check). -
includeTests
@Parameter(defaultValue="false") protected boolean includeTestsRun PMD on the tests.- Since:
- 2.2
-
aggregate
Deprecated.since 3.15.0 Use the goalspmd:aggregate-pmdandpmd:aggregate-cpdinstead.Whether to build an aggregated report at the root, or build individual reports.- Since:
- 2.2
-
includeXmlInSite
@Parameter(defaultValue="false") protected boolean includeXmlInSiteWhether to include the xml files generated by PMD/CPD in the site.- Since:
- 3.0
-
skipEmptyReport
@Parameter(defaultValue="false") protected boolean skipEmptyReportSkip the PMD/CPD report generation if there are no violations or duplications found. Defaults tofalse.Note: the default value was changed from
truetofalsewith version 3.13.0.- Since:
- 3.1
-
excludeFromFailureFile
@Parameter(property="pmd.excludeFromFailureFile", defaultValue="") protected String excludeFromFailureFileFile that lists classes and rules to be excluded from failures. For PMD, this is a properties file. For CPD, this is a text file that contains comma-separated lists of classes that are allowed to duplicate.- Since:
- 3.7
-
showPmdLog
@Parameter(defaultValue="true", property="pmd.showPmdLog") protected boolean showPmdLogRedirect PMD log into maven log out. When enabled, the PMD log output is redirected to maven, so that it is visible in the console together with all the other log output. Also, if maven is started with the debug flag (-Xor--debug), the PMD logger is also configured for debug.- Since:
- 3.9.0
-
project
@Parameter(defaultValue="${project}", readonly=true, required=true) protected org.apache.maven.project.MavenProject projectThe project to analyse. -
reactorProjects
@Parameter(property="reactorProjects", readonly=true) protected List<org.apache.maven.project.MavenProject> reactorProjectsThe projects in the reactor for aggregation report. -
session
@Parameter(defaultValue="${session}", required=true, readonly=true) protected org.apache.maven.execution.MavenSession sessionThe current build session instance. This is used for toolchain manager API calls and for dependency resolver API calls. -
filesToProcess
The files that are being analyzed.
-
-
Constructor Details
-
AbstractPmdReport
public AbstractPmdReport()
-
-
Method Details
-
getProject
protected org.apache.maven.project.MavenProject getProject()- Overrides:
getProjectin classorg.apache.maven.reporting.AbstractMavenReport
-
getSiteRenderer
protected org.apache.maven.doxia.siterenderer.Renderer getSiteRenderer()- Overrides:
getSiteRendererin classorg.apache.maven.reporting.AbstractMavenReport
-
constructXRefLocation
-
getFilesToProcess
Convenience method to get the list of files where the PMD tool will be executed- Returns:
- a List of the files where the PMD tool will be executed
- Throws:
IOException- If an I/O error occurs during construction of the canonical pathnames of the files
-
isXml
protected boolean isXml() -
canGenerateReport
public boolean canGenerateReport()- Specified by:
canGenerateReportin interfaceorg.apache.maven.reporting.MavenReport- Overrides:
canGenerateReportin classorg.apache.maven.reporting.AbstractMavenReport
-
getOutputDirectory
- Overrides:
getOutputDirectoryin classorg.apache.maven.reporting.AbstractMavenReport
-
getSourceEncoding
-
getOutputEncoding
Gets the effective reporting output files encoding.- Overrides:
getOutputEncodingin classorg.apache.maven.reporting.AbstractMavenReport- Returns:
- The effective reporting output file encoding, never
null. - Since:
- 2.5
-
determineCurrentRootLogLevel
-
getToolchain
protected final org.apache.maven.toolchain.Toolchain getToolchain() -
isAggregator
protected boolean isAggregator() -
getAggregatedProjects
-
pmd:aggregate-pmdandpmd:aggregate-cpdinstead.