Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

build.gradle 1.8KB

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