kezhenxu94 commented 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 `third-party-dependencies.txt` like the one in https://github.com/apache/dolphinscheduler/blob/dev/tools/dependencies/check-LICENSE.sh , with ```shell ls /tmp/seatunnel-dependencies > third-party-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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
