build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * This is a kingdee cosmic template project that is automatically generated by the Kingdee cosmic development assistant plugin.
  3. * If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
  4. * Website: https://developer.kingdee.com/developer?productLineId=29
  5. * Author: liebin.zheng
  6. * Generate Date: 2024-06-20 15:37:53
  7. */
  8. apply from: '../../config.gradle'
  9. def bos = ext.path.bos
  10. def trd = ext.path.trd
  11. def cus = ext.path.cus
  12. def biz = ext.path.biz
  13. dependencies {
  14. api fileTree(dir: bos, include: '*.jar')
  15. api fileTree(trd) { include '*.jar' exclude 'qing-arthas-*.jar' }
  16. //如果出现本地启动出现log4j相关依赖包版本冲突的问题,则可以参考以下方式手工解决
  17. //api fileTree(trd) {
  18. // include '*.jar'
  19. // exclude 'log4j-api-*.jar','logback-*.jar','slf4j-*.jar','qing-arthas-*.jar'
  20. //}
  21. //api 'cn.hutool:hutool-all:5.8.20'
  22. //api 'ch.qos.logback:logback-classic:1.2.12'
  23. //api 'org.slf4j:log4j-over-slf4j:1.7.36'
  24. //api 'org.apache.logging.log4j:log4j-to-slf4j:2.20.0'
  25. runtimeOnly fileTree(dir: biz, include: '*.jar')
  26. runtimeOnly fileTree(dir: cus, include: '*.jar')
  27. }