pom.xml 7.2 KB

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