JDepend 插件使用 JDepend 对项目的源文件执行质量检查,并从这些检查中生成报告。
The JDepend plugin performs quality checks on your project's source files using JDepend and generates reports from these checks.
要使用 JDepend 插件,请在构建脚本中包含:
To use the JDepend plugin, include in your build script:
示例 32.1. 使用 JDepend 插件 - Example 32.1. Using the JDepend plugin
build.gradle
apply plugin: 'jdepend'
该插件向项目添加了许多执行质量检查的任务。你可以通过运行 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
.
JDepend 插件将以下任务添加到项目中:
The JDepend plugin adds the following tasks to the project:
表 32.1. JDepend 插件——任务 - Table 32.1. JDepend plugin - tasks
任务名称 Task name |
依赖于 Depends on |
类型 Type |
描述 Description |
jdependMain |
classes |
JDepend |
针对 Java 生产源文件运行 JDepend。 Runs JDepend against the production Java source files. |
jdependTest |
testClasses |
JDepend |
针对 Java 测试源文件运行 JDepend。 Runs JDepend against the test Java source files. |
jdepend |
|
JDepend |
针对给定源集的 Java 源文件运行 JDepend。 Runs JDepend against the given source set's Java source files. |
JDepend 插件向 Java 插件所定义的任务添加了以下依赖。
The JDepend plugin adds the following dependencies to tasks defined by the Java plugin.
表 32.2. JDepend 插件——附加的任务依赖 - Table 32.2. JDepend plugin - additional task dependencies
任务名称 Task name |
依赖于 Depends on |
check |
所有 JDepend 任务,包括 jdependMain 和 jdependTest 。All JDepend tasks, including jdependMain and jdependTest . |
JDepend 插件添加了下列的依赖配置:
The JDepend plugin adds the following dependency configurations:
表32.3. JDepend 插件——依赖配置 - Table 32.3. JDepend plugin - dependency configurations
名称 Name |
意义 Meaning |
jdepend |
要使用的 JDepend 库 The JDepend libraries to use |
请参阅 JDependExtension
。
See JDependExtension
.