On Mon, Jul 9, 2012 at 9:08 AM, Shai Erera <ser...@gmail.com> wrote: > I see. It's less convenient now to e.g. put an external javadocs link in my > build.xml, i.e. I need to put one per module that I use, but I can live with > it. >
have you seen the way our build does it? have a look at the build.xml of lucene/queryparser (which depends on queries and sandbox) <target name="javadocs" depends="javadocs-queries,javadocs-sandbox,compile-core"> <invoke-module-javadoc> <links> <link href="../queries"/> <link href="../sandbox"/> </links> </invoke-module-javadoc> </target> invoke-module-javadoc (in module-build.xml) is a macro that takes an optional links section for external links. -- lucidimagination.com --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org