Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public abstract class AbstractPmdReport extends AbstractMavenReport {
* exclusion patterns only operate on the path of a source file relative to its source root directory. In other
* words, files are excluded based on their package and/or class name. If you want to exclude entire source root
* directories, use the parameter <code>excludeRoots</code> instead.
* If a file matches both includes and excludes, it is excluded.
*
* @since 2.2
*/
Expand All @@ -105,7 +106,7 @@ public abstract class AbstractPmdReport extends AbstractMavenReport {

/**
* A list of files to check. Can contain Ant-style wildcards and double wildcards. Defaults to
* **\/*.java.
* **\/*.java. If a file matches both includes and excludes, it is excluded.
*
* @since 2.2
*/
Expand Down