第三十三章. PMD 插件

Chapter 33. The PMD Plugin

PMD 插件使用 PMD对项目的 Java 源文件执行质量检查,并从检查结果中生成报告。
The PMD plugin performs quality checks on your project's Java source files using PMD and generates reports from these checks.

33.1. 用法

33.1. Usage

要使用 PMD 插件,请在构建脚本中包含以下语句:
To use the PMD plugin, include in your build script:

示例 33.1. 使用 PMD 插件
Example 33.1. Using the PMD plugin

build.gradle

apply plugin: 'pmd'

该插件向你的项目添加了大量的执行质量检查的任务。你可以通过运行 gradle check 执行检查。
The plugin adds a number of tasks to the project that perform the quality checks. You can execute the checks by running gradle check .

33.2. 任务

33.2. Tasks

PMD 插件向project 中添加了以下任务:
The PMD plugin adds the following tasks to the project:

表 33.1. PMD 插件 - 任务
Table 33.1. PMD plugin - tasks

任务名称
Task name
依赖于
Depends on
类型
Type
描述
Description
pmdMain - Pmd 针对生产Java 源文件运行 PMD。
Runs PMD against the production Java source files.
pmdTest - Pmd 针对测试 Java 源文件运行 PMD。
Runs PMD against the test Java source files.
pmdSourceSet - Pmd 针对测试 Java 源文件运行 PMD。
Runs PMD against the given source set's Java source files.

PMD 插件向 Java 插件所加入的任务添加了以下的依赖。
The PMD plugin adds the following dependencies to tasks defined by the Java plugin.

表 33.2. PMD 插件 - 附加的任务依赖
Table 33.2. PMD plugin - additional task dependencies

任务名称
Task name
依赖于
Depends on
check 所有的 PMD 任务,包括 pmdMainpmdTest
All PMD tasks, including pmdMain and pmdTest .

33.3. 依赖管理

33.3. Dependency management

PMD 插件添加了下列的依赖配置:
The PMD plugin adds the following dependency configurations:

表33.3. PMD 插件 ​​- 依赖配置
Table 33.3. PMD plugin - dependency configurations

名称
Name
意义
Meaning
pmd 使用的 PMD 库
The PMD libraries to use

33.4. 配置

33.4. Configuration

请参阅 PmdExtension
See PmdExtension .