Hi,
I'm trying to use the jdepend task with the latest build (1.5 alpha) ant the
latest optional.jar. I'm getting the following error message:
The <jdepend> task doesn't support the "format" attribute.
My task looks like this:
<target name="jdepends" depends="init" >
<property name="depends.dir" value="${lib.dir}/docs/jdepends" />
<mkdir dir="${depends.dir}" />
<jdepend outputfile="${depends.dir}/jdepend.xml" fork="yes"
format="xml">
<sourcespath>
<pathelement location="${src.java.dir}" />
</sourcespath>
<classpath>
<path refid="app.classpath"/>
<pathelement location="${jdepend.jar}" />
</classpath>
</jdepend>
</target>
The docs say this should work and I see the format definition in the source.
Any ideas?
Thanks,
Chuck
--
To unsubscribe, e-mail: <mailto:ant-user-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:ant-user-help@jakarta.apache.org>
|