pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.macro.mall</groupId>
  7. <artifactId>mall</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>mall-common</module>
  12. <module>mall-mbg</module>
  13. <module>mall-security</module>
  14. <module>mall-demo</module>
  15. <module>mall-admin</module>
  16. <module>mall-search</module>
  17. <module>mall-portal</module>
  18. </modules>
  19. <parent>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-parent</artifactId>
  22. <version>2.3.0.RELEASE</version>
  23. <relativePath/> <!-- lookup parent from repository -->
  24. </parent>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <java.version>1.8</java.version>
  29. <skipTests>true</skipTests>
  30. <docker.host>http://192.168.3.101:2375</docker.host>
  31. <docker.maven.plugin.version>1.1.0</docker.maven.plugin.version>
  32. <pagehelper-starter.version>1.2.10</pagehelper-starter.version>
  33. <pagehelper.version>5.1.8</pagehelper.version>
  34. <druid.version>1.1.10</druid.version>
  35. <hutool.version>4.5.7</hutool.version>
  36. <swagger2.version>2.9.2</swagger2.version>
  37. <swagger-models.version>1.6.0</swagger-models.version>
  38. <swagger-annotations.version>1.6.0</swagger-annotations.version>
  39. <mybatis-generator.version>1.3.7</mybatis-generator.version>
  40. <mybatis.version>3.4.6</mybatis.version>
  41. <mysql-connector.version>8.0.15</mysql-connector.version>
  42. <spring-data-commons.version>2.3.0.RELEASE</spring-data-commons.version>
  43. <jjwt.version>0.9.0</jjwt.version>
  44. <aliyun-oss.version>2.5.0</aliyun-oss.version>
  45. <logstash-logback.version>5.3</logstash-logback.version>
  46. <minio.version>3.0.10</minio.version>
  47. <guava.version>20.0</guava.version>
  48. <mall-common.version>1.0-SNAPSHOT</mall-common.version>
  49. <mall-mbg.version>1.0-SNAPSHOT</mall-mbg.version>
  50. <mall-security.version>1.0-SNAPSHOT</mall-security.version>
  51. </properties>
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-aop</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-all</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-configuration-processor</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. </dependencies>
  80. <dependencyManagement>
  81. <dependencies>
  82. <!--mall通用模块-->
  83. <dependency>
  84. <groupId>com.macro.mall</groupId>
  85. <artifactId>mall-common</artifactId>
  86. <version>${mall-common.version}</version>
  87. </dependency>
  88. <!--mall中MBG生成模块-->
  89. <dependency>
  90. <groupId>com.macro.mall</groupId>
  91. <artifactId>mall-mbg</artifactId>
  92. <version>${mall-mbg.version}</version>
  93. </dependency>
  94. <!--mall安全模块-->
  95. <dependency>
  96. <groupId>com.macro.mall</groupId>
  97. <artifactId>mall-security</artifactId>
  98. <version>${mall-security.version}</version>
  99. </dependency>
  100. <!--MyBatis分页插件starter-->
  101. <dependency>
  102. <groupId>com.github.pagehelper</groupId>
  103. <artifactId>pagehelper-spring-boot-starter</artifactId>
  104. <version>${pagehelper-starter.version}</version>
  105. </dependency>
  106. <!--MyBatis分页插件-->
  107. <dependency>
  108. <groupId>com.github.pagehelper</groupId>
  109. <artifactId>pagehelper</artifactId>
  110. <version>${pagehelper.version}</version>
  111. </dependency>
  112. <!--集成druid连接池-->
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>druid-spring-boot-starter</artifactId>
  116. <version>${druid.version}</version>
  117. </dependency>
  118. <!--Hutool Java工具包-->
  119. <dependency>
  120. <groupId>cn.hutool</groupId>
  121. <artifactId>hutool-all</artifactId>
  122. <version>${hutool.version}</version>
  123. </dependency>
  124. <!--Swagger-UI API文档生产工具-->
  125. <dependency>
  126. <groupId>io.springfox</groupId>
  127. <artifactId>springfox-swagger2</artifactId>
  128. <version>${swagger2.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>io.springfox</groupId>
  132. <artifactId>springfox-swagger-ui</artifactId>
  133. <version>${swagger2.version}</version>
  134. </dependency>
  135. <!--解决Swagger 2.9.2版本NumberFormatException-->
  136. <dependency>
  137. <groupId>io.swagger</groupId>
  138. <artifactId>swagger-models</artifactId>
  139. <version>${swagger-models.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>io.swagger</groupId>
  143. <artifactId>swagger-annotations</artifactId>
  144. <version>${swagger-annotations.version}</version>
  145. </dependency>
  146. <!-- MyBatis 生成器 -->
  147. <dependency>
  148. <groupId>org.mybatis.generator</groupId>
  149. <artifactId>mybatis-generator-core</artifactId>
  150. <version>${mybatis-generator.version}</version>
  151. </dependency>
  152. <!-- MyBatis-->
  153. <dependency>
  154. <groupId>org.mybatis</groupId>
  155. <artifactId>mybatis</artifactId>
  156. <version>${mybatis.version}</version>
  157. </dependency>
  158. <!--Mysql数据库驱动-->
  159. <dependency>
  160. <groupId>mysql</groupId>
  161. <artifactId>mysql-connector-java</artifactId>
  162. <version>${mysql-connector.version}</version>
  163. </dependency>
  164. <!--SpringData工具包-->
  165. <dependency>
  166. <groupId>org.springframework.data</groupId>
  167. <artifactId>spring-data-commons</artifactId>
  168. <version>${spring-data-commons.version}</version>
  169. </dependency>
  170. <!--JWT(Json Web Token)登录支持-->
  171. <dependency>
  172. <groupId>io.jsonwebtoken</groupId>
  173. <artifactId>jjwt</artifactId>
  174. <version>${jjwt.version}</version>
  175. </dependency>
  176. <!-- 阿里云OSS -->
  177. <dependency>
  178. <groupId>com.aliyun.oss</groupId>
  179. <artifactId>aliyun-sdk-oss</artifactId>
  180. <version>${aliyun-oss.version}</version>
  181. </dependency>
  182. <!--集成logstash-->
  183. <dependency>
  184. <groupId>net.logstash.logback</groupId>
  185. <artifactId>logstash-logback-encoder</artifactId>
  186. <version>${logstash-logback.version}</version>
  187. </dependency>
  188. <!--MinIO JAVA SDK-->
  189. <dependency>
  190. <groupId>io.minio</groupId>
  191. <artifactId>minio</artifactId>
  192. <version>${minio.version}</version>
  193. </dependency>
  194. <!--统一Guava版本防止冲突-->
  195. <dependency>
  196. <groupId>com.google.guava</groupId>
  197. <artifactId>guava</artifactId>
  198. <version>${guava.version}</version>
  199. </dependency>
  200. </dependencies>
  201. </dependencyManagement>
  202. </project>