You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2006/07/13 19:48:43 UTC

svn commit: r421673 - /incubator/abdera/java/trunk/build/build.xml

Author: jmsnell
Date: Thu Jul 13 10:48:43 2006
New Revision: 421673

URL: http://svn.apache.org/viewvc?rev=421673&view=rev
Log:
Produce javadocs for more than just the core interfaces

Modified:
    incubator/abdera/java/trunk/build/build.xml

Modified: incubator/abdera/java/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/build/build.xml?rev=421673&r1=421672&r2=421673&view=diff
==============================================================================
--- incubator/abdera/java/trunk/build/build.xml (original)
+++ incubator/abdera/java/trunk/build/build.xml Thu Jul 13 10:48:43 2006
@@ -175,11 +175,11 @@
 
   <target name="docs" depends="init">
     <javadoc packagenames="org.apache.abdera.*"
-             excludepackagenames="org.apache.abdera.util"
-             sourcepath="${core.src}" 
+             excludepackagenames="org.apache.abdera.util,org.apache.abdera.ext.*.impl,org.apache.abdera.parser.**,org.apache.abdera.security.**"
+             sourcepath="${core.src}:${extensions.src}:${security.src}:${server.src}:${parser.src}" 
              destdir="${javadocs}"
              windowtitle="Abdera"
-             classpathref="jar.dependencies"/>
+             classpathref="jar.dependencies" />
     <copy file="${basedir}/docs/index.html" todir="${docs}" />
   </target>