pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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.1.7.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.7.0</swagger2.version>
  37. <mybatis-generator.version>1.3.7</mybatis-generator.version>
  38. <mybatis.version>3.4.6</mybatis.version>
  39. <mysql-connector.version>8.0.15</mysql-connector.version>
  40. <spring-data-commons.version>2.1.5.RELEASE</spring-data-commons.version>
  41. <jjwt.version>0.9.0</jjwt.version>
  42. <aliyun-oss.version>2.5.0</aliyun-oss.version>
  43. <logstash-logback.version>4.8</logstash-logback.version>
  44. <minio.version>3.0.10</minio.version>
  45. <mall-common.version>1.0-SNAPSHOT</mall-common.version>
  46. <mall-mbg.version>1.0-SNAPSHOT</mall-mbg.version>
  47. <mall-security.version>1.0-SNAPSHOT</mall-security.version>
  48. </properties>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-web</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-actuator</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-aop</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-test</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.pagehelper</groupId>
  69. <artifactId>pagehelper-spring-boot-starter</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>druid-spring-boot-starter</artifactId>
  74. </dependency>
  75. </dependencies>
  76. <dependencyManagement>
  77. <dependencies>
  78. <!--mall通用模块-->
  79. <dependency>
  80. <groupId>com.macro.mall</groupId>
  81. <artifactId>mall-common</artifactId>
  82. <version>${mall-common.version}</version>
  83. </dependency>
  84. <!--mall中MBG生成模块-->
  85. <dependency>
  86. <groupId>com.macro.mall</groupId>
  87. <artifactId>mall-mbg</artifactId>
  88. <version>${mall-mbg.version}</version>
  89. </dependency>
  90. <!--mall安全模块-->
  91. <dependency>
  92. <groupId>com.macro.mall</groupId>
  93. <artifactId>mall-security</artifactId>
  94. <version>${mall-security.version}</version>
  95. </dependency>
  96. <!--MyBatis分页插件starter-->
  97. <dependency>
  98. <groupId>com.github.pagehelper</groupId>
  99. <artifactId>pagehelper-spring-boot-starter</artifactId>
  100. <version>${pagehelper-starter.version}</version>
  101. </dependency>
  102. <!--MyBatis分页插件-->
  103. <dependency>
  104. <groupId>com.github.pagehelper</groupId>
  105. <artifactId>pagehelper</artifactId>
  106. <version>${pagehelper.version}</version>
  107. </dependency>
  108. <!--集成druid连接池-->
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>druid-spring-boot-starter</artifactId>
  112. <version>${druid.version}</version>
  113. </dependency>
  114. <!--Hutool Java工具包-->
  115. <dependency>
  116. <groupId>cn.hutool</groupId>
  117. <artifactId>hutool-all</artifactId>
  118. <version>${hutool.version}</version>
  119. </dependency>
  120. <!--Swagger-UI API文档生产工具-->
  121. <dependency>
  122. <groupId>io.springfox</groupId>
  123. <artifactId>springfox-swagger2</artifactId>
  124. <version>${swagger2.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>io.springfox</groupId>
  128. <artifactId>springfox-swagger-ui</artifactId>
  129. <version>${swagger2.version}</version>
  130. </dependency>
  131. <!-- MyBatis 生成器 -->
  132. <dependency>
  133. <groupId>org.mybatis.generator</groupId>
  134. <artifactId>mybatis-generator-core</artifactId>
  135. <version>${mybatis-generator.version}</version>
  136. </dependency>
  137. <!-- MyBatis-->
  138. <dependency>
  139. <groupId>org.mybatis</groupId>
  140. <artifactId>mybatis</artifactId>
  141. <version>${mybatis.version}</version>
  142. </dependency>
  143. <!--Mysql数据库驱动-->
  144. <dependency>
  145. <groupId>mysql</groupId>
  146. <artifactId>mysql-connector-java</artifactId>
  147. <version>${mysql-connector.version}</version>
  148. </dependency>
  149. <!--SpringData工具包-->
  150. <dependency>
  151. <groupId>org.springframework.data</groupId>
  152. <artifactId>spring-data-commons</artifactId>
  153. <version>${spring-data-commons.version}</version>
  154. </dependency>
  155. <!--JWT(Json Web Token)登录支持-->
  156. <dependency>
  157. <groupId>io.jsonwebtoken</groupId>
  158. <artifactId>jjwt</artifactId>
  159. <version>${jjwt.version}</version>
  160. </dependency>
  161. <!-- 阿里云OSS -->
  162. <dependency>
  163. <groupId>com.aliyun.oss</groupId>
  164. <artifactId>aliyun-sdk-oss</artifactId>
  165. <version>${aliyun-oss.version}</version>
  166. </dependency>
  167. <!--集成logstash-->
  168. <dependency>
  169. <groupId>net.logstash.logback</groupId>
  170. <artifactId>logstash-logback-encoder</artifactId>
  171. <version>${logstash-logback.version}</version>
  172. </dependency>
  173. <!--MinIO JAVA SDK-->
  174. <dependency>
  175. <groupId>io.minio</groupId>
  176. <artifactId>minio</artifactId>
  177. <version>${minio.version}</version>
  178. </dependency>
  179. </dependencies>
  180. </dependencyManagement>
  181. </project>