AntJava Doc wildcard problem
I am trying to wild card the href attribute in <link> element in my ant build.xml file to generate javadocs, and it fails real bad, Is there a way I can wildcard the following statement
<javadoc .........>
<link offline="true" href="http://java.sun.com/j2se/1.4.2/docs/api/" packagelistLoc="some local location of the file"/>
<link offline="false" href="../Project1/" />
<link offline="false" href="../Project2/" />
<link offline="false" href="../Project3/" />
<link offline="false" href="../Project4/" />
</javadoc>
i tried
<link offline="false" href="../* " />
doesn't work :(

