You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2021/12/30 08:10:55 UTC

[GitHub] [incubator-seatunnel] kezhenxu94 edited a comment on issue #905: [License] check dependencies' binary licenses

kezhenxu94 edited a comment on issue #905:
URL: https://github.com/apache/incubator-seatunnel/issues/905#issuecomment-1002917649


   The problem now is that we don't have a list of the dependencies, once we got the list, we can reuse the script https://github.com/apache/dolphinscheduler/blob/dev/tools/dependencies/check-LICENSE.sh
   
   Even we can have the dependencies from final .tgz, we can have another command to copy the dependencies that this project uses, like 
   
   ```shell
   ./mvnw dependency:copy-dependencies -DincludeScope=runtime -DoutputDirectory=/tmp/seatunnel-dependencies
   ```
   
   So we can generate the same file `all-dependencies.txt` like the one in https://github.com/apache/dolphinscheduler/blob/dev/tools/dependencies/check-LICENSE.sh , with
   
   
   ```shell
   ls /tmp/seatunnel-dependencies > all-dependencies.txt
   ```
   
   then everything else is the same as https://github.com/apache/dolphinscheduler/blob/dev/tools/dependencies/check-LICENSE.sh


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org