I run javadoc with the ant task:
<target name="javadoc" description="create javadoc">
<delete dir="javadoc" />
<mkdir dir="javadoc" />
<javadoc destdir="javadoc">
<fileset dir="src/main/java" includes="sk/**" />
</javadoc>
</target>
I want to change the default index.html page to provide a quick start guide. I can change index.html to copy it to another place and rewrite it after completing the ant task for javadoc, but this seems a little silly. Is there a more general way to achieve this? Thanks
source
share