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

4 months ago
2 months ago
1 month ago
4 months ago
4 months ago
4 months ago
4 months ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. implementation 'com.alibaba:easyexcel:3.2.1'
  40. }
  41. bootJar {
  42. archiveFileName = "${appname}-boot.jar"
  43. mainClassName = "cn.com.taiji.${appname}.Application"
  44. }
  45. test {
  46. useJUnitPlatform()
  47. }
  48. //gradle会检查一次依赖,设置每次build都进行检查。默认时间为24小时
  49. configurations.all {
  50. // check for updates every build
  51. resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
  52. }
  53. apply plugin: "createProject"
  54. createProjectParam {
  55. sampleAppName "iaw"
  56. appName "iaw"
  57. projectType "app"
  58. parentProjectName "zhywpt"
  59. }