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 <[email protected]> Reviewers: Guozhang Wang <[email protected]> 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 <[email protected]> Authored: Mon Feb 29 12:50:24 2016 -0800 Committer: Guozhang Wang <[email protected]> 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 {
