You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by hi...@apache.org on 2014/08/26 22:05:30 UTC

git commit: TEZ-1430. Javadoc generation should not generate docs for classes annotated as private. (Jonathan Eagles via hitesh)

Repository: tez
Updated Branches:
  refs/heads/master 1bef46e76 -> 89d36629f


TEZ-1430. Javadoc generation should not generate docs for classes annotated as private. (Jonathan Eagles via hitesh)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/89d36629
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/89d36629
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/89d36629

Branch: refs/heads/master
Commit: 89d36629f5c5994da71106770b1fd1adfce7a71f
Parents: 1bef46e
Author: Hitesh Shah <hi...@apache.org>
Authored: Tue Aug 26 13:05:06 2014 -0700
Committer: Hitesh Shah <hi...@apache.org>
Committed: Tue Aug 26 13:05:06 2014 -0700

----------------------------------------------------------------------
 pom.xml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/89d36629/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 77c6d8d..7477c47 100644
--- a/pom.xml
+++ b/pom.xml
@@ -989,6 +989,30 @@
           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.9.1</version>
+        <reportSets>
+          <reportSet>
+            <id>aggregate</id>
+            <configuration>
+              <doclet>org.apache.hadoop.classification.tools.IncludePublicAnnotationsStandardDoclet</doclet>
+              <docletArtifacts>
+                <docletArtifact>
+                  <groupId>org.apache.hadoop</groupId>
+                  <artifactId>hadoop-annotations</artifactId>
+                  <version>${hadoop.version}</version>
+                </docletArtifact>
+              </docletArtifacts>
+              <useStandardDocletOptions>true</useStandardDocletOptions>
+            </configuration>
+            <reports>
+              <report>aggregate</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
     </plugins>
   </reporting>