第32章 JDependプラグイン

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

JDependプラグインは JDependを使用して、あなたのプロジェクトのJavaソースファイルの品質チェックを行ないます。 そして、これらのチェック結果から結果レポートを生成します。

32.1. 使用方法Usage

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

JDependプラグインを使うためには、ビルドスクリプトに下記を含めます:

例32.1 JDependプラグインの使用

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.

このプラグインは、品質チェックを行なうプロジェクトへの多くのタスクを加えます。 貴方はタスク実行時にチェック処理を実行させることが出来ます。 gradle check.

32.2. タスクTasks

The JDepend plugin adds the following tasks to the project:

JDependプラグインは、以下のタスクをプロジェクトに追加します:

表32.1 JDependプラグイン - タスク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.
jdependSourceSet sourceSetClasses JDepend 特定のソースセットで指定されたJavaソースを対象に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.

JDependプラグインは、Javaプラグインによって追加されたタスクに以下の依存関係を追加します。

表32.2 JDependプラグイン - タスクの追加依存関係JDepend plugin - additional task dependencies

タスク名Task name依存先Depends on
check 全てのJDependタスクは、jdependMainjdependTestを含みます。All JDepend tasks, including jdependMain and jdependTest.

32.3. 依存関係の管理Dependency management

The JDepend plugin adds the following dependency configurations:

JDependプラグインは、以下の依存関係設定を追加します。

表32.3 JDependプラグイン - 依存関係設定

JDepend plugin - dependency configurations

名前

Name

意味

Meaning

jdepend JDependのライブラリを使用します。

The JDepend libraries to use

32.4. 設定

Configuration

See the JDependExtension class in the API documentation.

JDependExtensionを参照。