您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. buildscript {
  2. ext {
  3. set('appname', "userw")
  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}:ats-protocol:1.0.0-SNAPSHOT"
  11. implementation "${groupname}:ias-protocol:1.0.0-SNAPSHOT"
  12. implementation "${groupname}:sample-protocol:1.0.0-SNAPSHOT"
  13. implementation('cn.com.taiji.common:sso-client:2.3.10.7')
  14. implementation "org.springframework.boot:spring-boot-starter-security"
  15. implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery"
  16. implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config"
  17. implementation 'com.alibaba:druid-spring-boot-starter:1.2.8'
  18. implementation "org.springframework.cloud:spring-cloud-starter-openfeign"
  19. implementation 'com.alibaba:easyexcel:3.2.1'
  20. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis'
  21. implementation(group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0') {
  22. // exclude group: 'net.bytebuddy',module: 'byte-buddy'
  23. }
  24. implementation "com.github.xiaoymin:knife4j-spring-boot-starter:3.0.2"
  25. // //MYSQL
  26. // runtimeOnly 'mysql:mysql-connector-java'
  27. //ORACLE+库编码问题
  28. runtimeOnly 'com.oracle.database.jdbc:ojdbc8:19.10.0.0'
  29. runtimeOnly 'cn.easyproject:orai18n:12.1.0.2.0'
  30. }
  31. bootJar {
  32. archiveFileName = "${appname}-boot.jar"
  33. mainClassName = "cn.com.taiji.${appname}.Application"
  34. }
  35. test {
  36. useJUnitPlatform()
  37. }
  38. //gradle会检查一次依赖,设置每次build都进行检查。默认时间为24小时
  39. configurations.all {
  40. // check for updates every build
  41. resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
  42. }
  43. apply plugin: "createProject"
  44. createProjectParam {
  45. sampleAppName "userw"
  46. appName "userw"
  47. projectType "app"
  48. parentProjectName "zhywpt"
  49. }