pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.tz.cloud</groupId>
  6. <artifactId>tz</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>tz-module-grape-city</artifactId>
  10. <packaging>pom</packaging>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <modules>
  15. <module>tz-module-grape-city-api</module>
  16. <module>tz-module-grape-city-biz</module>
  17. </modules>
  18. <name>${project.artifactId}</name>
  19. <description>
  20. grape-city 模块,主要提供葡萄城模版能力
  21. </description>
  22. <dependencies> <!-- 5. 新增 yudao-common 依赖 -->
  23. <!-- Spring Cloud 基础 -->
  24. <dependency>
  25. <groupId>cn.tz.cloud</groupId>
  26. <artifactId>tz-spring-boot-starter-env</artifactId>
  27. </dependency>
  28. <!-- 业务组件 -->
  29. <dependency>
  30. <groupId>cn.tz.cloud</groupId>
  31. <artifactId>tz-spring-boot-starter-biz-data-permission</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.tz.cloud</groupId>
  35. <artifactId>tz-spring-boot-starter-biz-tenant</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.tz.cloud</groupId>
  39. <artifactId>tz-spring-boot-starter-biz-ip</artifactId>
  40. </dependency>
  41. <!-- Web 相关 -->
  42. <dependency>
  43. <groupId>cn.tz.cloud</groupId>
  44. <artifactId>tz-spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.tz.cloud</groupId>
  48. <artifactId>tz-spring-boot-starter-security</artifactId>
  49. </dependency>
  50. <!-- DB 相关 -->
  51. <dependency>
  52. <groupId>cn.tz.cloud</groupId>
  53. <artifactId>tz-spring-boot-starter-mybatis</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.tz.cloud</groupId>
  57. <artifactId>tz-spring-boot-starter-redis</artifactId>
  58. </dependency>
  59. <!-- RPC 远程调用相关 -->
  60. <dependency>
  61. <groupId>cn.tz.cloud</groupId>
  62. <artifactId>tz-spring-boot-starter-rpc</artifactId>
  63. </dependency>
  64. <!-- Registry 注册中心相关 -->
  65. <dependency>
  66. <groupId>com.alibaba.cloud</groupId>
  67. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  68. </dependency>
  69. <!-- Config 配置中心相关 -->
  70. <dependency>
  71. <groupId>com.alibaba.cloud</groupId>
  72. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  73. </dependency>
  74. <!-- Job 定时任务相关 -->
  75. <dependency>
  76. <groupId>cn.tz.cloud</groupId>
  77. <artifactId>tz-spring-boot-starter-job</artifactId>
  78. </dependency>
  79. <!-- 消息队列相关 -->
  80. <dependency>
  81. <groupId>cn.tz.cloud</groupId>
  82. <artifactId>tz-spring-boot-starter-mq</artifactId>
  83. </dependency>
  84. <!-- Test 测试相关 -->
  85. <dependency>
  86. <groupId>cn.tz.cloud</groupId>
  87. <artifactId>tz-spring-boot-starter-test</artifactId>
  88. </dependency>
  89. <!-- 工具类相关 -->
  90. <dependency>
  91. <groupId>cn.tz.cloud</groupId>
  92. <artifactId>tz-spring-boot-starter-excel</artifactId>
  93. </dependency>
  94. <!-- 监控相关 -->
  95. <dependency>
  96. <groupId>cn.tz.cloud</groupId>
  97. <artifactId>tz-spring-boot-starter-monitor</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.aliyun</groupId>
  101. <artifactId>dysmsapi20170525</artifactId>
  102. <version>3.1.2</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>cn.tz.cloud</groupId>
  106. <artifactId>tz-module-member-api</artifactId>
  107. <version>2.4.0-SNAPSHOT</version>
  108. <scope>compile</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.grapecitysoft.documents</groupId>
  112. <artifactId>gcexcel</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>cn.tz.cloud</groupId>
  116. <artifactId>tz-spring-boot-starter-protection</artifactId>
  117. </dependency>
  118. </dependencies>
  119. </project>