> I have lobbied (unsucessfully) to remove that inconsistancy by removing
the
> ant.project.name property ;) Feel free to throw in your support for that
> move
I currently use ant.project.name for a generic documentation target:
<target depends="init" description="Generate documentation" name="docs">
<javadoc doctitle="<h1>${ant.project.name}</h1>"
...
windowtitle="${ant.project.name} API">
</javadoc>
</target>
Perhaps this is not good design, but I can't figure out how could I achieve
the same goal in a simple way without using ant.project.name.
Any suggestion on which would be a better design?