From 79bdc17ab4b0157ceb5257e6c4ff646a3fa55f6d Mon Sep 17 00:00:00 2001 From: Ewen Cheslack-Postava Date: Mon, 9 Nov 2015 15:08:34 -0800 Subject: [PATCH] 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 --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index f9fd42a7002..4f5e482db63 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 {