build.gradle 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * :*$@@%$*: ;: ;; ;;
  5. * :@@%! :!@@%: %! ;%%@@%$ =@@@@@@@%; @%@@@%%%%@@@@@
  6. * :@%; :$= %%$$$%$$ ;$$ ;$@= !@$
  7. * =@! %! @ $=;% !@@@%: !$$$$$$$$$$$$$$=
  8. * =@* %! @ $= % %@= =%@! %=
  9. * *$%%! @@= ;=$%%%$*: %! @ $= % =%%%%%%@$ *%: =%
  10. * %@@!: !@@@%=$@@@@%! :*@@$: %! @ $= % $* ;@ @* :%*
  11. * ;@@! ;!!!;: ;@%: =======@%========* @ $$ % $%*****$@ :@$=*********=@$
  12. * $@* ;@@@%=!: *@*
  13. * =@$ ;;;!=%@@@@=! =@!
  14. * %@$: =@%: :*@@@* %@= Copyright (c) 2016-2019. 北京上格云技术有限公司
  15. * ;%@@$=$@@%* *@@@$=%@@%;
  16. * ::;:: ::;:: All rights reserved.
  17. *
  18. * ********************************************************************************************************************
  19. */
  20. group rootProject.group
  21. version rootProject.version
  22. apply plugin: "kotlin"
  23. apply plugin: "org.jetbrains.dokka"
  24. apply plugin: "war"
  25. apply plugin: 'org.springframework.boot'
  26. apply plugin: 'io.spring.dependency-management'
  27. sourceCompatibility = JVM_TARGET
  28. compileKotlin {
  29. kotlinOptions.jvmTarget = JVM_TARGET
  30. }
  31. compileTestKotlin {
  32. kotlinOptions.jvmTarget = JVM_TARGET
  33. }
  34. dependencies {
  35. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  36. // kotlin 依赖
  37. compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk8", version: KOTLIN_VERSION
  38. compile group: "org.jetbrains.kotlin", name: "kotlin-reflect", version: KOTLIN_VERSION
  39. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  40. // spring boot 依赖
  41. compile group: "org.springframework.boot", name: "spring-boot-starter-web", version: SPRING_BOOT_VERSION
  42. compile group: "org.springframework.boot", name: "spring-boot-starter-actuator", version: SPRING_BOOT_VERSION
  43. compile group: "org.springframework.boot", name: "spring-boot-starter-logging", version: SPRING_BOOT_VERSION
  44. //消息
  45. compile group: "org.springframework.boot", name: "spring-boot-starter-activemq", version: SPRING_BOOT_VERSION
  46. providedCompile group: "org.springframework.boot", name:"spring-boot-starter-tomcat", version: SPRING_BOOT_VERSION
  47. // spring boot 缓存
  48. compile group:"org.springframework.boot", name:"spring-boot-starter-cache", version: SPRING_BOOT_VERSION
  49. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  50. // spring cloud 依赖
  51. // compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-eureka', version: SPRING_CLOUD_VERSION
  52. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  53. // MySQL
  54. // https://mvnrepository.com/artifact/mysql/mysql-connector-java
  55. // compile group: 'mysql', name: 'mysql-connector-java', version: MYSQL_VERSION
  56. // PostgreSQL
  57. //https://mvnrepository.com/artifact/org.postgresql/postgresql
  58. // compile group: 'org.postgresql', name: 'postgresql', version: POSTGRESQL_VERSION
  59. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  60. // RESTful API 文档生成工具
  61. // https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui
  62. compile group: "io.springfox", name: "springfox-swagger-ui", version: SWAGGER_VERSION
  63. compile group: "io.springfox", name: "springfox-swagger2", version: SWAGGER_VERSION
  64. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  65. // Sybotan依赖
  66. // compile group: "com.sybotan", name: "sybotan-kotlin-base", version: SYBOTAN_KOTLIN_VERSION
  67. // compile group: "com.sybotan", name: "sybotan-kotlin-database", version: SYBOTAN_KOTLIN_VERSION
  68. // compile group: "com.sybotan", name: "sybotan-kotlin-mybatis", version: SYBOTAN_KOTLIN_VERSION
  69. // compile group: "com.sybotan", name: "sybotan-kotlin-postgresql", version: SYBOTAN_KOTLIN_VERSION
  70. // compile group: "com.sybotan", name: "sybotan-service-base", version: SYBOTAN_SERVICE_VERSION
  71. // compile group: "com.sybotan", name: "sybotan-service-mybatis", version: SYBOTAN_SERVICE_VERSION
  72. compile group: "com.persagy", name: "persagy-kotlin-base", version: PERSAGY_KOTLIN_VERSION
  73. compile group: "com.persagy", name: "persagy-kotlin-database", version: PERSAGY_KOTLIN_VERSION
  74. compile group: "com.persagy", name: "persagy-kotlin-mybatis", version: PERSAGY_KOTLIN_VERSION
  75. compile group: "com.persagy", name: "persagy-kotlin-postgresql", version: PERSAGY_KOTLIN_VERSION
  76. compile group: "com.persagy", name: "persagy-service-base", version: PERSAGY_SERVICE_VERSION
  77. compile group: "com.persagy", name: "persagy-service-mybatis", version: PERSAGY_SERVICE_VERSION
  78. compile group: "com.persagy", name: "persagy-service-postgresql", version: PERSAGY_SERVICE_VERSION
  79. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  80. // 数据中心依赖
  81. compile project(":data-core")
  82. }
  83. dependencyManagement {
  84. imports {
  85. mavenBom "org.springframework.cloud:spring-cloud-dependencies:${SPRING_CLOUD_DEPENDENCIES}"
  86. }
  87. }