Chapter 59. The JDepend Plugin

Table of Contents

59.1. Usage
59.2. Tasks
59.3. Dependency management
59.4. Configuration

The JDepend plugin performs quality checks on your project's source files using JDepend and generates reports from these checks.

59.1. Usage

To use the JDepend plugin, include the following in your build script:

Example 59.1. Using the JDepend plugin

build.gradle

apply plugin: 'jdepend'

The plugin adds a number of tasks to the project that perform the quality checks. You can execute the checks by running gradle check.

Note that JDepend will run with the same Java version used to run Gradle.

59.2. Tasks

The JDepend plugin adds the following tasks to the project:

Table 59.1. JDepend plugin - tasks

Task name Depends on Type Description
jdependMain classes JDepend Runs JDepend against the production Java source files.
jdependTest testClasses JDepend Runs JDepend against the test Java source files.
jdependSourceSet sourceSetClasses JDepend Runs JDepend against the given source set's Java source files.

The JDepend plugin adds the following dependencies to tasks defined by the Java plugin.

Table 59.2. JDepend plugin - additional task dependencies

Task nameDepends on
check All JDepend tasks, including jdependMain and jdependTest.

59.3. Dependency management

The JDepend plugin adds the following dependency configurations:

Table 59.3. JDepend plugin - dependency configurations

Name Meaning
jdepend The JDepend libraries to use

59.4. Configuration

See the JDependExtension class in the API documentation.