pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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.0</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.105:2375</docker.host>
  31. <docker.maven.plugin.version>0.40.0</docker.maven.plugin.version>
  32. <pagehelper-starter.version>1.4.2</pagehelper-starter.version>
  33. <pagehelper.version>5.3.0</pagehelper.version>
  34. <druid.version>1.2.9</druid.version>
  35. <hutool.version>5.8.0</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.9</mybatis.version>
  41. <mysql-connector.version>8.0.29</mysql-connector.version>
  42. <spring-data-commons.version>2.7.0</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.1</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-boot-starter</artifactId>
  127. <version>${springfox-swagger.version}</version>
  128. </dependency>
  129. <!--解决Swagger访问主页时的NumberFormatException问题-->
  130. <dependency>
  131. <groupId>io.swagger</groupId>
  132. <artifactId>swagger-models</artifactId>
  133. <version>${swagger-models.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>io.swagger</groupId>
  137. <artifactId>swagger-annotations</artifactId>
  138. <version>${swagger-annotations.version}</version>
  139. </dependency>
  140. <!-- MyBatis 生成器 -->
  141. <dependency>
  142. <groupId>org.mybatis.generator</groupId>
  143. <artifactId>mybatis-generator-core</artifactId>
  144. <version>${mybatis-generator.version}</version>
  145. </dependency>
  146. <!-- MyBatis-->
  147. <dependency>
  148. <groupId>org.mybatis</groupId>
  149. <artifactId>mybatis</artifactId>
  150. <version>${mybatis.version}</version>
  151. </dependency>
  152. <!--Mysql数据库驱动-->
  153. <dependency>
  154. <groupId>mysql</groupId>
  155. <artifactId>mysql-connector-java</artifactId>
  156. <version>${mysql-connector.version}</version>
  157. </dependency>
  158. <!--SpringData工具包-->
  159. <dependency>
  160. <groupId>org.springframework.data</groupId>
  161. <artifactId>spring-data-commons</artifactId>
  162. <version>${spring-data-commons.version}</version>
  163. </dependency>
  164. <!--JWT(Json Web Token)登录支持-->
  165. <dependency>
  166. <groupId>io.jsonwebtoken</groupId>
  167. <artifactId>jjwt</artifactId>
  168. <version>${jjwt.version}</version>
  169. </dependency>
  170. <!-- 阿里云OSS -->
  171. <dependency>
  172. <groupId>com.aliyun.oss</groupId>
  173. <artifactId>aliyun-sdk-oss</artifactId>
  174. <version>${aliyun-oss.version}</version>
  175. </dependency>
  176. <!--集成logstash-->
  177. <dependency>
  178. <groupId>net.logstash.logback</groupId>
  179. <artifactId>logstash-logback-encoder</artifactId>
  180. <version>${logstash-logback.version}</version>
  181. </dependency>
  182. <!--MinIO JAVA SDK-->
  183. <dependency>
  184. <groupId>io.minio</groupId>
  185. <artifactId>minio</artifactId>
  186. <version>${minio.version}</version>
  187. </dependency>
  188. </dependencies>
  189. </dependencyManagement>
  190. <build>
  191. <pluginManagement>
  192. <plugins>
  193. <plugin>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-maven-plugin</artifactId>
  196. </plugin>
  197. <plugin>
  198. <groupId>io.fabric8</groupId>
  199. <artifactId>docker-maven-plugin</artifactId>
  200. <version>${docker.maven.plugin.version}</version>
  201. <executions>
  202. <!--如果想在项目打包时构建镜像添加-->
  203. <execution>
  204. <id>build-image</id>
  205. <phase>package</phase>
  206. <goals>
  207. <goal>build</goal>
  208. </goals>
  209. </execution>
  210. </executions>
  211. <configuration>
  212. <!-- Docker 远程管理地址-->
  213. <dockerHost>${docker.host}</dockerHost>
  214. <images>
  215. <image>
  216. <!--定义镜像名称-->
  217. <name>mall/${project.name}:${project.version}</name>
  218. <!--定义镜像构建行为-->
  219. <build>
  220. <!--定义基础镜像-->
  221. <from>java:8</from>
  222. <args>
  223. <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
  224. </args>
  225. <!--定义哪些文件拷贝到容器中-->
  226. <assembly>
  227. <!--定义拷贝到容器的目录-->
  228. <targetDir>/</targetDir>
  229. <!--只拷贝生成的jar包-->
  230. <descriptorRef>artifact</descriptorRef>
  231. </assembly>
  232. <!--定义容器启动命令-->
  233. <entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>
  234. <!--定义维护者-->
  235. <maintainer>macrozheng</maintainer>
  236. </build>
  237. </image>
  238. </images>
  239. </configuration>
  240. </plugin>
  241. </plugins>
  242. </pluginManagement>
  243. </build>
  244. </project>