You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 2.3KB

5 달 전
4 달 전
5 달 전
5 일 전
5 달 전
2 달 전
3 달 전
4 달 전
5 달 전
4 달 전
5 달 전
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. buildscript {
  2. ext {
  3. set('appname', "ats")
  4. }
  5. }
  6. group = 'cn.com.taiji'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '11'
  9. dependencies {
  10. implementation "${groupname}:common-core:1.0.0-SNAPSHOT"
  11. implementation "${groupname}:entity-core:1.0.0-SNAPSHOT"
  12. implementation "${groupname}:comm-core:1.0.0-SNAPSHOT"
  13. implementation "${groupname}:sample-protocol:1.0.0-SNAPSHOT"
  14. implementation "${groupname}:smp-protocol:1.0.0-SNAPSHOT"
  15. implementation "${groupname}:ats-protocol:1.0.0-SNAPSHOT"
  16. implementation "${groupname}:ias-protocol:1.0.0-SNAPSHOT"
  17. implementation "${groupname}:ifmw-protocol:1.0.0-SNAPSHOT"
  18. implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery"
  19. implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config"
  20. implementation "org.springframework.cloud:spring-cloud-starter-openfeign"
  21. implementation "org.springframework.boot:spring-boot-starter-data-redis"
  22. //ORACLE+库编码问题
  23. runtimeOnly 'com.oracle.database.jdbc:ojdbc8:19.10.0.0'
  24. runtimeOnly 'cn.easyproject:orai18n:12.1.0.2.0'
  25. //二维码
  26. implementation "com.google.zxing:core:3.5.1"
  27. // 支付宝SDK
  28. implementation group: 'com.alipay.sdk', name:'alipay-sdk-java', version: '4.39.194.ALL'
  29. // 微信SDK
  30. implementation 'com.github.binarywang:weixin-java-pay:4.7.4.B'
  31. implementation 'com.github.wechatpay-apiv3:wechatpay-java:0.2.17'
  32. // 微信电子签章
  33. implementation 'com.tencentcloudapi:tencentcloud-sdk-java:3.1.1334'
  34. // 极光推送
  35. implementation group: 'cn.jpush.api', name: 'jpush-client', version: '3.6.6'
  36. implementation fileTree(dir: 'lib', include: ['*.jar'])
  37. implementation 'com.squareup.okhttp3:okhttp:3.14.9'
  38. implementation group: 'net.coobird', name: 'thumbnailator', version: '0.4.20'
  39. }
  40. bootJar {
  41. archiveFileName = "${appname}-boot.jar"
  42. mainClassName = "cn.com.taiji.${appname}.Application"
  43. }
  44. test {
  45. useJUnitPlatform()
  46. }
  47. //gradle会检查一次依赖,设置每次build都进行检查。默认时间为24小时
  48. configurations.all {
  49. // check for updates every build
  50. resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
  51. }
  52. apply plugin: "createProject"
  53. createProjectParam {
  54. sampleAppName "ats"
  55. appName "ats"
  56. projectType "service"
  57. parentProjectName "zhywpt"
  58. }