Return-Path: X-Original-To: apmail-kafka-commits-archive@www.apache.org Delivered-To: apmail-kafka-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 04C1F185B5 for ; Mon, 9 Nov 2015 23:08:40 +0000 (UTC) Received: (qmail 49115 invoked by uid 500); 9 Nov 2015 23:08:39 -0000 Delivered-To: apmail-kafka-commits-archive@kafka.apache.org Received: (qmail 49078 invoked by uid 500); 9 Nov 2015 23:08:39 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 49064 invoked by uid 99); 9 Nov 2015 23:08:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Nov 2015 23:08:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AC023E0902; Mon, 9 Nov 2015 23:08:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: junrao@apache.org To: commits@kafka.apache.org Message-Id: <3e123efaad644c37b4b1b5a6138acb48@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: kafka git commit: KAFKA-2785; Include Kafka Connect jars in releaseTarGz. Date: Mon, 9 Nov 2015 23:08:39 +0000 (UTC) Repository: kafka Updated Branches: refs/heads/trunk e2794a79c -> 79bdc17ab KAFKA-2785; Include Kafka Connect jars in releaseTarGz. Author: Ewen Cheslack-Postava Reviewers: Jun Rao Closes #473 from ewencp/kafka-2785-include-copycat-jars-in-release Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/79bdc17a Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/79bdc17a Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/79bdc17a Branch: refs/heads/trunk Commit: 79bdc17ab4b0157ceb5257e6c4ff646a3fa55f6d Parents: e2794a7 Author: Ewen Cheslack-Postava Authored: Mon Nov 9 15:08:34 2015 -0800 Committer: Jun Rao Committed: Mon Nov 9 15:08:34 2015 -0800 ---------------------------------------------------------------------- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/79bdc17a/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index f9fd42a..4f5e482 100644 --- a/build.gradle +++ b/build.gradle @@ -340,6 +340,14 @@ project(':core') { from(project.siteDocsTar) { into("site-docs/") } from(project(':tools').jar) { into("libs/") } from(project(':tools').configurations.runtime) { into("libs/") } + from(project(':connect:api').jar) { into("libs/") } + from(project(':connect:api').configurations.runtime) { into("libs/") } + from(project(':connect:runtime').jar) { into("libs/") } + from(project(':connect:runtime').configurations.runtime) { into("libs/") } + from(project(':connect:json').jar) { into("libs/") } + from(project(':connect:json').configurations.runtime) { into("libs/") } + from(project(':connect:file').jar) { into("libs/") } + from(project(':connect:file').configurations.runtime) { into("libs/") } } jar {