pom.xml 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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.2.2</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.16</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>7.1.0</minio.version>
  47. <mall-common.version>1.0-SNAPSHOT</mall-common.version>
  48. <mall-mbg.version>1.0-SNAPSHOT</mall-mbg.version>
  49. <mall-security.version>1.0-SNAPSHOT</mall-security.version>
  50. </properties>
  51. <dependencies>
  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>cn.hutool</groupId>
  67. <artifactId>hutool-all</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-configuration-processor</artifactId>
  76. <optional>true</optional>
  77. </dependency>
  78. </dependencies>
  79. <dependencyManagement>
  80. <dependencies>
  81. <!--mall通用模块-->
  82. <dependency>
  83. <groupId>com.macro.mall</groupId>
  84. <artifactId>mall-common</artifactId>
  85. <version>${mall-common.version}</version>
  86. </dependency>
  87. <!--mall中MBG生成模块-->
  88. <dependency>
  89. <groupId>com.macro.mall</groupId>
  90. <artifactId>mall-mbg</artifactId>
  91. <version>${mall-mbg.version}</version>
  92. </dependency>
  93. <!--mall安全模块-->
  94. <dependency>
  95. <groupId>com.macro.mall</groupId>
  96. <artifactId>mall-security</artifactId>
  97. <version>${mall-security.version}</version>
  98. </dependency>
  99. <!--MyBatis分页插件starter-->
  100. <dependency>
  101. <groupId>com.github.pagehelper</groupId>
  102. <artifactId>pagehelper-spring-boot-starter</artifactId>
  103. <version>${pagehelper-starter.version}</version>
  104. </dependency>
  105. <!--MyBatis分页插件-->
  106. <dependency>
  107. <groupId>com.github.pagehelper</groupId>
  108. <artifactId>pagehelper</artifactId>
  109. <version>${pagehelper.version}</version>
  110. </dependency>
  111. <!--集成druid连接池-->
  112. <dependency>
  113. <groupId>com.alibaba</groupId>
  114. <artifactId>druid-spring-boot-starter</artifactId>
  115. <version>${druid.version}</version>
  116. </dependency>
  117. <!--Hutool Java工具包-->
  118. <dependency>
  119. <groupId>cn.hutool</groupId>
  120. <artifactId>hutool-all</artifactId>
  121. <version>${hutool.version}</version>
  122. </dependency>
  123. <!--Swagger-UI API文档生产工具-->
  124. <dependency>
  125. <groupId>io.springfox</groupId>
  126. <artifactId>springfox-swagger2</artifactId>
  127. <version>${swagger2.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>io.springfox</groupId>
  131. <artifactId>springfox-swagger-ui</artifactId>
  132. <version>${swagger2.version}</version>
  133. </dependency>
  134. <!--解决Swagger 2.9.2版本NumberFormatException-->
  135. <dependency>
  136. <groupId>io.swagger</groupId>
  137. <artifactId>swagger-models</artifactId>
  138. <version>${swagger-models.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>io.swagger</groupId>
  142. <artifactId>swagger-annotations</artifactId>
  143. <version>${swagger-annotations.version}</version>
  144. </dependency>
  145. <!-- MyBatis 生成器 -->
  146. <dependency>
  147. <groupId>org.mybatis.generator</groupId>
  148. <artifactId>mybatis-generator-core</artifactId>
  149. <version>${mybatis-generator.version}</version>
  150. </dependency>
  151. <!-- MyBatis-->
  152. <dependency>
  153. <groupId>org.mybatis</groupId>
  154. <artifactId>mybatis</artifactId>
  155. <version>${mybatis.version}</version>
  156. </dependency>
  157. <!--Mysql数据库驱动-->
  158. <dependency>
  159. <groupId>mysql</groupId>
  160. <artifactId>mysql-connector-java</artifactId>
  161. <version>${mysql-connector.version}</version>
  162. </dependency>
  163. <!--SpringData工具包-->
  164. <dependency>
  165. <groupId>org.springframework.data</groupId>
  166. <artifactId>spring-data-commons</artifactId>
  167. <version>${spring-data-commons.version}</version>
  168. </dependency>
  169. <!--JWT(Json Web Token)登录支持-->
  170. <dependency>
  171. <groupId>io.jsonwebtoken</groupId>
  172. <artifactId>jjwt</artifactId>
  173. <version>${jjwt.version}</version>
  174. </dependency>
  175. <!-- 阿里云OSS -->
  176. <dependency>
  177. <groupId>com.aliyun.oss</groupId>
  178. <artifactId>aliyun-sdk-oss</artifactId>
  179. <version>${aliyun-oss.version}</version>
  180. </dependency>
  181. <!--集成logstash-->
  182. <dependency>
  183. <groupId>net.logstash.logback</groupId>
  184. <artifactId>logstash-logback-encoder</artifactId>
  185. <version>${logstash-logback.version}</version>
  186. </dependency>
  187. <!--MinIO JAVA SDK-->
  188. <dependency>
  189. <groupId>io.minio</groupId>
  190. <artifactId>minio</artifactId>
  191. <version>${minio.version}</version>
  192. </dependency>
  193. </dependencies>
  194. </dependencyManagement>
  195. <build>
  196. <pluginManagement>
  197. <plugins>
  198. <plugin>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-maven-plugin</artifactId>
  201. </plugin>
  202. <plugin>
  203. <groupId>com.spotify</groupId>
  204. <artifactId>docker-maven-plugin</artifactId>
  205. <version>${docker.maven.plugin.version}</version>
  206. <!--<executions>-->
  207. <!--<execution>-->
  208. <!--<id>build-image</id>-->
  209. <!--<phase>package</phase>-->
  210. <!--<goals>-->
  211. <!--<goal>build</goal>-->
  212. <!--</goals>-->
  213. <!--</execution>-->
  214. <!--</executions>-->
  215. <configuration>
  216. <imageName>mall/${project.artifactId}:${project.version}</imageName>
  217. <dockerHost>${docker.host}</dockerHost>
  218. <baseImage>java:8</baseImage>
  219. <entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]
  220. </entryPoint>
  221. <resources>
  222. <resource>
  223. <targetPath>/</targetPath>
  224. <directory>${project.build.directory}</directory>
  225. <include>${project.build.finalName}.jar</include>
  226. </resource>
  227. </resources>
  228. </configuration>
  229. </plugin>
  230. </plugins>
  231. </pluginManagement>
  232. </build>
  233. </project>