You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ju...@apache.org on 2014/11/18 03:52:22 UTC

kafka git commit: kafka-17693; javadoc should only include client facing packages; patched by Jun Rao; reviewed by Neha Narkhede

Repository: kafka
Updated Branches:
  refs/heads/0.8.2 117a02de0 -> 00dfa8926


kafka-17693; javadoc should only include client facing packages; patched by Jun Rao; reviewed by Neha Narkhede


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/00dfa892
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/00dfa892
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/00dfa892

Branch: refs/heads/0.8.2
Commit: 00dfa89260a3ddc7809b4626176114622a42024c
Parents: 117a02d
Author: Jun Rao <ju...@gmail.com>
Authored: Mon Nov 17 18:52:16 2014 -0800
Committer: Jun Rao <ju...@gmail.com>
Committed: Mon Nov 17 18:52:16 2014 -0800

----------------------------------------------------------------------
 build.gradle | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/00dfa892/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 665771b..030af63 100644
--- a/build.gradle
+++ b/build.gradle
@@ -367,4 +367,10 @@ project(':clients') {
         exceptionFormat = 'full'
     }
   }
+
+  javadoc {
+    include "**/org/apache/kafka/clients/producer/*"
+    include "**/org/apache/kafka/common/errors/*"
+  }
+
 }