I can not get inheritRefs to work properly.
Code fragments:
<target name="init" description="Sets up a file set of the axis jar files">
<path id="allJars">
<fileset dir="/foo2" id="bJars">
<include name="....."/>
</fileset>
<fileset dir="/foo" id="aJars">
<include name="....."/>
</fileset>
<fileset dir="/" id="cJars">
<include name="....."/>
</fileset>
</path>
</target>
<target name="genWsdlTarget">
<java classname="${wsdl.java2wsdl}" fork="true">
<classpath>
<fileset refid="axisJars"/>
</classpath>
</java>
</target>
<target name="genWsdl" description="Generate wsdl from compiled java"
depends="init">
<antcall inheritrefs="true" target="genWsdlTarget">
<param name="wsdlTarget" value="...."/>
</antcall>
</target>
BUILD FAILED
file:build.xml:166: No directory specified for fileset.
Line 166 corresponds to the <java> tag. Can someone help me out here? What am I
missing? Or is there a bug?
ant -version
Apache Ant version 1.5 compiled on July 12 2002
Thanks,
Dan
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>