hi there,
i am trying to integrate jdepend in my ant build file and i have used
the ant task <jdepend> with no success...
this is the task i have been using:
<target name="jdepend">
<jdepend outputfile="${xml.dir}/jdepend.xml" fork="yes"
format="xml">
<sourcespath>
<pathelement location="${src.dir}"/>
</sourcespath>
<classpath>
<pathelement location="${build.classes.dir}"/>
<pathelement location="lib/jdepend.jar"/>
</classpath>
</jdepend>
</target>
Ant Version: 1.5.1 in Netbeans
This is the error:
build.xml [322] The <jdepend> task doesn't support nested text data.
Does anyone know?
thanks!
bye, oliver