casionone commented on PR #572:
URL: 
https://github.com/apache/incubator-linkis-website/pull/572#issuecomment-1307248393

   ```
   licence相关的可以划分为3部分 
   - 源码级别  主要需要关注的场景是: 在项目工程源码中,直接引入第三方资源(如 
直接使用了某个其他项目的代码JAVA文件,新增了文本、css、js、图片、图标、音视频等文件,以及在第三方基础上做的修改) 
   - 项目的安装物料包  主要需要关注的场景是: 依赖的第三方jar包的运行态依赖,pom 配置中 通过dependency依赖引入 
即最后编译打包会被打包到发布的安装包中的
   - 管理台的安装物料包  主要需要关注的场景是:前端web编译依赖的第三方npm依赖包 通过linkis-web/package.json 配置引入  
   
   
   ├── LICENSE  //项目源码的LICENSE  一些没有asf header的文件或则引入外部资源需要在这里标明 
   ├── NOTICE   //项目源码的NOTICE 一般不会变动 
   ├── licenses  //项目源码级别引入第三方组件license 说明 
   │   └── LICENSE-py4j-0.10.9.5-src.txt
   ├── linkis-dist  
   │   └── release-docs 
   │       ├── LICENSE   //编译的安装包中依赖的第三方jar包的license信息汇总 
   │       ├── licenses   //编译的安装包中依赖的第三方jar包对应的license信息详细 
   │       │   ├── LICENSE-log4j-api.txt
   │       │   ├── LICENSE-log4j-core.txt
   │       │   ├── LICENSE-log4j-jul.txt
   │       │   ├── LICENSE-xxxx.txt
   │       └── NOTICE  //编译的安装包中依赖的第三方jar包的NOTICE 汇总 
   ├── linkis-web 
       └── release-docs
           ├── LICENSE  //前端web编译安装包第三方npm依赖的LICENSE信息汇总  
           ├── licenses  //前端web编译安装包第三方npm依赖对应的license信息详细 
           │   ├── LICENSE-vuedraggable.txt
           │   ├── LICENSE-vue-i18n.txt
           │   ├── LICENSE-vue.txt
           │   ├── LICENSE-vuescroll.txt
           │   └── LICENSE-xxxx.txt
           └── NOTICE //前端web编译安装包第三方npm依赖的NOTICE 汇总 
   ```


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to