pom.xml 7.2 KB

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