Repository: hbase Updated Branches: refs/heads/branch-1 96f74e0b6 -> 578e34aa1
HBASE-13920 Exclude org.apache.hadoop.hbase.protobuf.generated from javadoc generation Signed-off-by: Sean Busbey <[email protected]> Conflicts: pom.xml Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/578e34aa Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/578e34aa Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/578e34aa Branch: refs/heads/branch-1 Commit: 578e34aa1bf85e273249255fef46b7f0fff997fe Parents: 96f74e0 Author: Gábor Lipták <[email protected]> Authored: Tue Jun 16 20:47:44 2015 -0400 Committer: Sean Busbey <[email protected]> Committed: Tue Jun 23 22:15:13 2015 -0500 ---------------------------------------------------------------------- pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/578e34aa/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index cbc56dd..f9d3a00 100644 --- a/pom.xml +++ b/pom.xml @@ -2407,8 +2407,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.9.1</version> + <version>2.10.3</version> <configuration> + <sourceFilesExclude>**/generated</sourceFilesExclude> + <excludePackageNames>org.apache.hadoop.hbase.generated.master:org.apache.hadoop.hbase.protobuf.generated</excludePackageNames> <maxmemory>2048m</maxmemory> <notimestamp>true</notimestamp> </configuration>
