![]()
|
JDependDescriptionInvokes the JDepend parser. This parser "traverses a set of Java source file directories and generates design quality metrics for each Java package". It allows to "automatically measure the quality of a design in terms of its extensibility, reusability, and maintainability to effectively manage and control package dependencies." Source file directories are defined by nested Optionally, you can also set the The task requires at least the JDepend 1.2 version. Note: whereas the JDepend tool can be customized to exclude some packages, the current jdepend And Task does not have parameters to allow these exclusions. Read JDepend specific documentation for that purpose. Parameters
Nested Elements
ExamplesThis invokes JDepend on the<jdepend classpathref="base.path"> <sourcespath> <pathelement location="src"/> </sourcespath> </jdepend> src directory, writing the output on the standard output.
The classpath is defined using a classpath reference.
The classpath is defined using nested elements.<sourcespath> <pathelement location="src"/> </sourcespath> <classpath> <pathelement location="classes"/> <pathelement location="lib/jdepend.jar"/> </classpath> </jdepend> Copyright © 2001-2002 Apache Software Foundation. All rights Reserved. |