The JDepend plugin performs quality checks on your project's source files using JDepend and generates reports from these checks.
JDependプラグインは JDependを使用して、あなたのプロジェクトのJavaソースファイルの品質チェックを行ないます。 そして、これらのチェック結果から結果レポートを生成します。
To use the JDepend plugin, include the following in your build script:
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
.
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. |
jdepend
|
|
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タスクは、jdependMain と jdependTest を含みます。All JDepend tasks, including jdependMain and jdependTest . |
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 |