pom.xml 7.3 KB

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