Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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