| API Documentation: | JDepend |
|---|
Note: This class is deprecated and will be removed in the next major version of Gradle.
Analyzes code with JDepend.
| Property | Description |
classesDirs | The directories containing the classes to be analyzed. |
jdependClasspath | The class path containing the JDepend library to be used. |
reports | The reports to be generated by this task. |
| Method | Description |
reports(configureAction) | Configures the reports to be generated by this task. The contained reports can be configured by name and closures. Example: |
| Block | Description |
reports | Configures the reports to be generated by this task. The contained reports can be configured by name and closures. Example: |
The directories containing the classes to be analyzed.
- Default with
jdependplugin: sourceSet.output.classesDirs
The class path containing the JDepend library to be used.
- Default with
jdependplugin: project.configurations.jdepend
The reports to be generated by this task.
Configures the reports to be generated by this task. The contained reports can be configured by name and closures. Example:
jdependTask {
reports {
xml {
destination "build/jdepend.xml"
}
}
}
Configures the reports to be generated by this task. The contained reports can be configured by name and closures. Example:
jdependTask {
reports {
xml {
destination "build/jdepend.xml"
}
}
}
- Delegates to:
JDependReportsfromreports