I'd vote for including it as we have other contrib documentation, as a separate section in the main javadoc tree.

Doug

Michael Stack wrote:
Any chance of having the hbase javadoc show somewhere up on lucene.apache.org/hadoop?

It looks like other contribs -- streaming and datajoin -- have their javadoc produced as part of the general hadoop javadoc target up in the root build.xml. I could submit a patch like the below that adds hbase but perhaps folks have other ideas such as a 'javadoc-contrib' target in the root build.xml that calls down into subtargets under src/contrib?

Thanks,
St.Ack


Index: build.xml
===================================================================
--- build.xml    (revision 9396)
+++ build.xml    (working copy)
@@ -554,6 +554,7 @@

        <packageset dir="src/contrib/streaming/src/java"/>
        <packageset dir="src/contrib/data_join/src/java"/>
+        <packageset dir="src/contrib/hbase/src/java"/>

        <link href="${javadoc.link.java}"/>
        <classpath refid="classpath"/>
@@ -563,6 +564,7 @@

<group title="contrib: Streaming" packages="org.apache.hadoop.streaming*"/> <group title="contrib: DataJoin" packages="org.apache.hadoop.contrib/join*"/> + <group title="contrib: HBase" packages="org.apache.hadoop.contrib/hbase*"/>

    </javadoc>
</target>

Reply via email to