You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2021/01/16 18:49:47 UTC

[accumulo] branch main updated: Add missing hadoop-mapreduce module API javadocs (#1869)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new a2f437f  Add missing hadoop-mapreduce module API javadocs (#1869)
a2f437f is described below

commit a2f437fc8d9eeff4e9e4a704d5797309720c5e0c
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Sat Jan 16 13:49:38 2021 -0500

    Add missing hadoop-mapreduce module API javadocs (#1869)
    
    * Include missing hadoop-mapreduce module's classes to the generated
      javadocs when building the aggregate javadocs for the public API to
      publish on the website
    * Sort list of javadoc classes
    * Add comment in the profile explaining how to run
---
 pom.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2b730d6..3a6387a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1640,6 +1640,7 @@
       </properties>
     </profile>
     <profile>
+      <!-- mvn clean package javadoc:aggregate -DskipTests -Paggregate-javadocs -->
       <id>aggregate-javadocs</id>
       <build>
         <pluginManagement>
@@ -1650,11 +1651,12 @@
               <configuration>
                 <sourceFileIncludes>
                   <sourceFileInclude>**/org/apache/accumulo/core/client/**/*.java</sourceFileInclude>
-                  <sourceFileInclude>**/org/apache/accumulo/core/iterators/**/*.java</sourceFileInclude>
                   <sourceFileInclude>**/org/apache/accumulo/core/data/**/*.java</sourceFileInclude>
+                  <sourceFileInclude>**/org/apache/accumulo/core/iterators/**/*.java</sourceFileInclude>
                   <sourceFileInclude>**/org/apache/accumulo/core/security/**/*.java</sourceFileInclude>
-                  <sourceFileInclude>**/org/apache/accumulo/minicluster/**/*.java</sourceFileInclude>
                   <sourceFileInclude>**/org/apache/accumulo/core/spi/**/*.java</sourceFileInclude>
+                  <sourceFileInclude>**/org/apache/accumulo/hadoop/**/*.java</sourceFileInclude>
+                  <sourceFileInclude>**/org/apache/accumulo/minicluster/**/*.java</sourceFileInclude>
                 </sourceFileIncludes>
               </configuration>
             </plugin>