pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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.7.5</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>0.40.2</docker.maven.plugin.version>
  32. <pagehelper-starter.version>1.4.5</pagehelper-starter.version>
  33. <pagehelper.version>5.3.2</pagehelper.version>
  34. <druid.version>1.2.14</druid.version>
  35. <hutool.version>5.8.9</hutool.version>
  36. <springfox-swagger.version>3.0.0</springfox-swagger.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.4.1</mybatis-generator.version>
  40. <mybatis.version>3.5.10</mybatis.version>
  41. <mysql-connector.version>8.0.29</mysql-connector.version>
  42. <spring-data-commons.version>2.7.5</spring-data-commons.version>
  43. <jjwt.version>0.9.1</jjwt.version>
  44. <aliyun-oss.version>2.5.0</aliyun-oss.version>
  45. <logstash-logback.version>7.2</logstash-logback.version>
  46. <minio.version>8.4.5</minio.version>
  47. <jaxb-api.version>2.3.1</jaxb-api.version>
  48. <mall-common.version>1.0-SNAPSHOT</mall-common.version>
  49. <mall-mbg.version>1.0-SNAPSHOT</mall-mbg.version>
  50. <mall-security.version>1.0-SNAPSHOT</mall-security.version>
  51. </properties>
  52. <dependencies>
  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>cn.hutool</groupId>
  68. <artifactId>hutool-all</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-configuration-processor</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. <!--解决JDK 11 兼容性问题-->
  80. <dependency>
  81. <groupId>javax.xml.bind</groupId>
  82. <artifactId>jaxb-api</artifactId>
  83. <version>${jaxb-api.version}</version>
  84. </dependency>
  85. </dependencies>
  86. <dependencyManagement>
  87. <dependencies>
  88. <!--mall通用模块-->
  89. <dependency>
  90. <groupId>com.macro.mall</groupId>
  91. <artifactId>mall-common</artifactId>
  92. <version>${mall-common.version}</version>
  93. </dependency>
  94. <!--mall中MBG生成模块-->
  95. <dependency>
  96. <groupId>com.macro.mall</groupId>
  97. <artifactId>mall-mbg</artifactId>
  98. <version>${mall-mbg.version}</version>
  99. </dependency>
  100. <!--mall安全模块-->
  101. <dependency>
  102. <groupId>com.macro.mall</groupId>
  103. <artifactId>mall-security</artifactId>
  104. <version>${mall-security.version}</version>
  105. </dependency>
  106. <!--MyBatis分页插件starter-->
  107. <dependency>
  108. <groupId>com.github.pagehelper</groupId>
  109. <artifactId>pagehelper-spring-boot-starter</artifactId>
  110. <version>${pagehelper-starter.version}</version>
  111. </dependency>
  112. <!--MyBatis分页插件-->
  113. <dependency>
  114. <groupId>com.github.pagehelper</groupId>
  115. <artifactId>pagehelper</artifactId>
  116. <version>${pagehelper.version}</version>
  117. </dependency>
  118. <!--集成druid连接池-->
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>druid-spring-boot-starter</artifactId>
  122. <version>${druid.version}</version>
  123. </dependency>
  124. <!--Hutool Java工具包-->
  125. <dependency>
  126. <groupId>cn.hutool</groupId>
  127. <artifactId>hutool-all</artifactId>
  128. <version>${hutool.version}</version>
  129. </dependency>
  130. <!--Swagger-UI API文档生产工具-->
  131. <dependency>
  132. <groupId>io.springfox</groupId>
  133. <artifactId>springfox-boot-starter</artifactId>
  134. <version>${springfox-swagger.version}</version>
  135. </dependency>
  136. <!--解决Swagger访问主页时的NumberFormatException问题-->
  137. <dependency>
  138. <groupId>io.swagger</groupId>
  139. <artifactId>swagger-models</artifactId>
  140. <version>${swagger-models.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.swagger</groupId>
  144. <artifactId>swagger-annotations</artifactId>
  145. <version>${swagger-annotations.version}</version>
  146. </dependency>
  147. <!-- MyBatis 生成器 -->
  148. <dependency>
  149. <groupId>org.mybatis.generator</groupId>
  150. <artifactId>mybatis-generator-core</artifactId>
  151. <version>${mybatis-generator.version}</version>
  152. </dependency>
  153. <!-- MyBatis-->
  154. <dependency>
  155. <groupId>org.mybatis</groupId>
  156. <artifactId>mybatis</artifactId>
  157. <version>${mybatis.version}</version>
  158. </dependency>
  159. <!--Mysql数据库驱动-->
  160. <dependency>
  161. <groupId>mysql</groupId>
  162. <artifactId>mysql-connector-java</artifactId>
  163. <version>${mysql-connector.version}</version>
  164. </dependency>
  165. <!--SpringData工具包-->
  166. <dependency>
  167. <groupId>org.springframework.data</groupId>
  168. <artifactId>spring-data-commons</artifactId>
  169. <version>${spring-data-commons.version}</version>
  170. </dependency>
  171. <!--JWT(Json Web Token)登录支持-->
  172. <dependency>
  173. <groupId>io.jsonwebtoken</groupId>
  174. <artifactId>jjwt</artifactId>
  175. <version>${jjwt.version}</version>
  176. </dependency>
  177. <!-- 阿里云OSS -->
  178. <dependency>
  179. <groupId>com.aliyun.oss</groupId>
  180. <artifactId>aliyun-sdk-oss</artifactId>
  181. <version>${aliyun-oss.version}</version>
  182. </dependency>
  183. <!--集成logstash-->
  184. <dependency>
  185. <groupId>net.logstash.logback</groupId>
  186. <artifactId>logstash-logback-encoder</artifactId>
  187. <version>${logstash-logback.version}</version>
  188. </dependency>
  189. <!--MinIO JAVA SDK-->
  190. <dependency>
  191. <groupId>io.minio</groupId>
  192. <artifactId>minio</artifactId>
  193. <version>${minio.version}</version>
  194. </dependency>
  195. </dependencies>
  196. </dependencyManagement>
  197. <build>
  198. <pluginManagement>
  199. <plugins>
  200. <plugin>
  201. <groupId>org.springframework.boot</groupId>
  202. <artifactId>spring-boot-maven-plugin</artifactId>
  203. </plugin>
  204. <plugin>
  205. <groupId>io.fabric8</groupId>
  206. <artifactId>docker-maven-plugin</artifactId>
  207. <version>${docker.maven.plugin.version}</version>
  208. <executions>
  209. <!--如果想在项目打包时构建镜像添加-->
  210. <execution>
  211. <id>build-image</id>
  212. <phase>package</phase>
  213. <goals>
  214. <goal>build</goal>
  215. </goals>
  216. </execution>
  217. </executions>
  218. <configuration>
  219. <!-- Docker 远程管理地址-->
  220. <dockerHost>${docker.host}</dockerHost>
  221. <images>
  222. <image>
  223. <!--定义镜像名称-->
  224. <name>mall/${project.name}:${project.version}</name>
  225. <!--定义镜像构建行为-->
  226. <build>
  227. <!--定义基础镜像-->
  228. <from>openjdk:8</from>
  229. <args>
  230. <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
  231. </args>
  232. <!--定义哪些文件拷贝到容器中-->
  233. <assembly>
  234. <!--定义拷贝到容器的目录-->
  235. <targetDir>/</targetDir>
  236. <!--只拷贝生成的jar包-->
  237. <descriptorRef>artifact</descriptorRef>
  238. </assembly>
  239. <!--定义容器启动命令-->
  240. <entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>
  241. <!--定义维护者-->
  242. <maintainer>macrozheng</maintainer>
  243. </build>
  244. </image>
  245. </images>
  246. </configuration>
  247. </plugin>
  248. </plugins>
  249. </pluginManagement>
  250. </build>
  251. </project>