You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2016/02/29 21:50:27 UTC

kafka git commit: HOTFIX: Missing streams jar in release

Repository: kafka
Updated Branches:
  refs/heads/trunk d501cc62d -> a7312971a


HOTFIX: Missing streams jar in release

Observation: when doing "gradlew releaseTarGz" the streams jar was not included in the tarball. Adding a line to include it. ijuma guozhangwang could you please review. Thanks.

Author: Eno Thereska <en...@gmail.com>

Reviewers: Guozhang Wang <wa...@gmail.com>

Closes #984 from enothereska/trunk


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

Branch: refs/heads/trunk
Commit: a7312971a06e3576720ac6d38978eb0a2a25f544
Parents: d501cc6
Author: Eno Thereska <en...@gmail.com>
Authored: Mon Feb 29 12:50:24 2016 -0800
Committer: Guozhang Wang <wa...@gmail.com>
Committed: Mon Feb 29 12:50:24 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/kafka/blob/a7312971/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index feef93b..5953f57 100644
--- a/build.gradle
+++ b/build.gradle
@@ -373,6 +373,7 @@ project(':core') {
     from(project(':connect:json').configurations.runtime) { into("libs/") }
     from(project(':connect:file').jar) { into("libs/") }
     from(project(':connect:file').configurations.runtime) { into("libs/") }
+    from(project(':streams').jar) { into("libs/") }
   }
 
   jar {