This is an automated email from the ASF dual-hosted git repository.
ijuma pushed a commit to branch 2.8
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/2.8 by this push:
new f05d1ce KAFKA-12658: Include kafka-shell jar and dependencies in
release tar (#10531)
f05d1ce is described below
commit f05d1ce3592626addee1fdf8d556131920530749
Author: Ismael Juma <[email protected]>
AuthorDate: Mon Apr 12 22:26:54 2021 -0700
KAFKA-12658: Include kafka-shell jar and dependencies in release tar
(#10531)
Verified that `./bin/kafka-metadata-shell.sh --help` on the release tarball
works as expected. It failed with a `ClassNotFoundException` before this
change.
Reviewers: Chia-Ping Tsai <[email protected]>, Gwen (Chen) Shapira
<[email protected]>
---
build.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build.gradle b/build.gradle
index 6ec4bb4..e21609f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -957,6 +957,8 @@ project(':core') {
from(project.siteDocsTar) { into("site-docs/") }
from(project(':tools').jar) { into("libs/") }
from(project(':tools').configurations.runtime) { into("libs/") }
+ from(project(':shell').jar) { into("libs/") }
+ from(project(':shell').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/") }