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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. buildscript {
  2. ext {
  3. set('appname', "iaw")
  4. }
  5. }
  6. dependencies {
  7. implementation "${groupname}:common-core:1.0.0-SNAPSHOT"
  8. implementation "${groupname}:entity-core:1.0.0-SNAPSHOT"
  9. implementation "${groupname}:comm-core:1.0.0-SNAPSHOT"
  10. implementation "${groupname}:sample-protocol:1.0.0-SNAPSHOT"
  11. implementation "${groupname}:ias-protocol:1.0.0-SNAPSHOT"
  12. implementation "${groupname}:ats-protocol:1.0.0-SNAPSHOT"
  13. implementation "${groupname}:bls-protocol:1.0.0-SNAPSHOT"
  14. implementation "${groupname}:ods-protocol:1.0.0-SNAPSHOT"
  15. implementation "${groupname}:inss-protocol:1.0.0-SNAPSHOT"
  16. implementation "${groupname}:smp-protocol:1.0.0-SNAPSHOT"
  17. implementation('cn.com.taiji.common:sso-client:2.3.10.7')
  18. implementation "org.springframework.boot:spring-boot-starter-security"
  19. implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery"
  20. implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config"
  21. implementation 'com.alibaba:druid-spring-boot-starter:1.2.8'
  22. implementation "org.springframework.cloud:spring-cloud-starter-openfeign"
  23. implementation(group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0') {
  24. // exclude group: 'net.bytebuddy',module: 'byte-buddy'
  25. }
  26. implementation 'com.google.zxing:core:3.5.1'
  27. implementation "com.github.xiaoymin:knife4j-spring-boot-starter:3.0.2"
  28. // //MYSQL
  29. // runtimeOnly 'mysql:mysql-connector-java'
  30. //ORACLE+库编码问题
  31. runtimeOnly 'com.oracle.database.jdbc:ojdbc8:19.10.0.0'
  32. runtimeOnly 'cn.easyproject:orai18n:12.1.0.2.0'
  33. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis'
  34. implementation 'com.github.wxpay:wxpay-sdk:0.0.3'
  35. // 添加 MapStruct 核心库依赖
  36. implementation 'org.mapstruct:mapstruct:1.5.5.Final'
  37. // 添加 MapStruct 注解处理器依赖
  38. annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
  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 "iaw"
  55. appName "iaw"
  56. projectType "app"
  57. parentProjectName "zhywpt"
  58. }