This is an automated email from the ASF dual-hosted git repository.
bbejeck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new cf3434e6b08 MINOR: Add LICENSE and NOTICE to site-docs tar (#22606)
cf3434e6b08 is described below
commit cf3434e6b082060aa1d0d007ea66bad9abd0795c
Author: Bill Bejeck <[email protected]>
AuthorDate: Wed Jun 17 14:10:36 2026 -0400
MINOR: Add LICENSE and NOTICE to site-docs tar (#22606)
Title says it all
validated by
```
./gradlew -q clean siteDocsTar && tar tzf
core/build/distributions/*site-docs.tgz | grep -E
'site-docs/(LICENSE|NOTICE)$'
site-docs/LICENSE
site-docs/NOTICE
```
Reviewers: Matthias J. Sax <[email protected]>
---
build.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build.gradle b/build.gradle
index c403601df3e..4ea7759ddad 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1308,6 +1308,8 @@ project(':core') {
archiveClassifier = 'site-docs'
compression = Compression.GZIP
from project.file("$rootDir/docs")
+ from "$rootDir/LICENSE"
+ from "$rootDir/NOTICE"
into 'site-docs'
duplicatesStrategy 'exclude'
}