bobbai00 opened a new pull request, #4367:
URL: https://github.com/apache/texera/pull/4367

   ### What changes were proposed in this PR?
   
   Add hand-curated LICENSE, NOTICE, and DISCLAIMER-WIP files to jar META-INF 
directories and sbt-native-packager dist zip top level, following [Apache 
Pekko's 
pattern](https://github.com/apache/pekko/blob/main/project/AddMetaInfLicenseFiles.scala).
   
   - `legal/StandardLicense.txt` — Apache 2.0 + vendored source attributions
   - `legal/TexeraNotice.txt` — ASF NOTICE
   - `project/AddMetaInfLicenseFiles.scala` — copies from `legal/` into 
META-INF and Universal mappings
   - `build.sbt` — `asfDistLicensingSettings` applied to all 6 dist modules
   
   ### Any related issues, documentation, discussions?
   
   Resolves #4131
   
   ### How was this PR tested?
   
   ```bash
   sbt clean dist
   # Verify dist zips have top-level LICENSE/NOTICE/DISCLAIMER-WIP
   for zip in */target/universal/*.zip; do echo "=== $zip ==="; unzip -l "$zip" 
| grep -E "LICENSE|NOTICE|DISCLAIMER"; done
   # Verify service jars have META-INF entries
   for dir in */target/universal/*/lib; do echo "=== $dir ==="; jar tf 
"$dir"/org.apache.*.jar 2>/dev/null | grep META-INF/; done
   ```
   
   ### Was this PR authored or co-authored using generative AI tooling?
   
   Generated-by: Claude Code (Claude Opus 4.6)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to