diff --git a/docs/manual/OptionalTasks/jdepend.html b/docs/manual/OptionalTasks/jdepend.html index 5bbe5c75e..2d2734ff9 100644 --- a/docs/manual/OptionalTasks/jdepend.html +++ b/docs/manual/OptionalTasks/jdepend.html @@ -16,14 +16,14 @@
Invokes 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 +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 <sourcespath>
, see nested elements.
Optionally, you can also set the outputfile
name where the output is stored. By default the task writes its report to the standard output.
The task requires at least the JDepend 1.2 version.
+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.
@@ -40,6 +40,11 @@ effectively manage and control package dependencies."jdepend
supports two nested elements <classpath>
and <sourcespath>
,
-that represent PATH like structures.
jdepend
supports two nested elements <classpath>
and <sourcespath>
,
+that represent PATH like structures.
<sourcespath>
is used to define the paths of the source code to analyze.
+ -This invokes JDepend in a separate VM on the-<jdepend outputfile="docs/jdepend.txt" fork="yes"> +<jdepend outputfile="docs/jdepend.xml" fork="yes" format="xml"> <sourcespath> <pathelement location="src" /> </sourcespath> @@ -106,10 +111,10 @@ The classpath is defined using a classpath reference. </classpath> </jdepend>-
src
and testsrc
directories, writing the output in the <docs/jdepend.txt>
file.
-The classpath is defined using nested elements.
+This invokes JDepend in a separate VM on the src
and testsrc
directories, writing the output to the <docs/jdepend.xml>
file in xml format.
+The classpath is defined using nested elements.