This is an automated email from the ASF dual-hosted git repository.

bbejeck pushed a commit to branch 4.3
in repository https://gitbox.apache.org/repos/asf/kafka.git

commit cc9a63bf6e1579c2751d8c6eda39a954d1cd1c1b
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 31125c1372d..85f2bf67f92 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1267,6 +1267,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'
   }

Reply via email to