pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.17.RELEASE</version>
  10. </parent>
  11. <groupId>com.poyee</groupId>
  12. <artifactId>poyee</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  20. <druid.version>1.2.1</druid.version>
  21. <swagger.version>2.9.2</swagger.version>
  22. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  23. <fastjson.version>1.2.74</fastjson.version>
  24. <oshi.version>5.2.5</oshi.version>
  25. <commons.io.version>2.5</commons.io.version>
  26. <dozer.version>6.5.2</dozer.version>
  27. <mybatis_plus.version>3.5.2</mybatis_plus.version>
  28. <skipTests>true</skipTests>
  29. <model.version>1.0.0</model.version>
  30. <springboot.version>2.1.17.RELEASE</springboot.version>
  31. </properties>
  32. <dependencyManagement>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. <version>${springboot.version}</version>
  38. </dependency>
  39. <!-- SpringBoot 拦截器 -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-aop</artifactId>
  43. <version>${springboot.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-validation</artifactId>
  48. <version>${springboot.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.aspectj</groupId>
  52. <artifactId>aspectjrt</artifactId>
  53. <version>1.9.6</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.aspectj</groupId>
  57. <artifactId>aspectjweaver</artifactId>
  58. <version>1.9.6</version>
  59. </dependency>
  60. <!-- 热更新-->
  61. <!--<dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-devtools</artifactId>
  64. <version>${springboot.version}</version>
  65. </dependency>-->
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <version>1.18.12</version>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-test</artifactId>
  75. <version>${springboot.version}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <!--阿里数据库连接池 -->
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>druid-spring-boot-starter</artifactId>
  82. <version>${druid.version}</version>
  83. </dependency>
  84. <!-- pagehelper 分页插件 -->
  85. <dependency>
  86. <groupId>com.github.pagehelper</groupId>
  87. <artifactId>pagehelper-spring-boot-starter</artifactId>
  88. <version>${pagehelper.boot.version}</version>
  89. </dependency>
  90. <!-- swagger2-->
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-swagger2</artifactId>
  94. <version>${swagger.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger-ui</artifactId>
  99. <version>${swagger.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.xiaoymin</groupId>
  103. <artifactId>swagger-bootstrap-ui</artifactId>
  104. <version>1.9.5</version>
  105. </dependency>
  106. <!-- 自定义验证注解 -->
  107. <!--<dependency>
  108. <groupId>javax.validation</groupId>
  109. <artifactId>validation-api</artifactId>
  110. </dependency>-->
  111. <!--io常用工具类 -->
  112. <dependency>
  113. <groupId>commons-io</groupId>
  114. <artifactId>commons-io</artifactId>
  115. <version>${commons.io.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.postgresql</groupId>
  119. <artifactId>postgresql</artifactId>
  120. <version>42.2.16</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.velocity</groupId>
  124. <artifactId>velocity</artifactId>
  125. <version>1.7</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.baomidou</groupId>
  129. <artifactId>mybatis-plus-boot-starter</artifactId>
  130. <version>${mybatis_plus.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.baomidou</groupId>
  134. <artifactId>mybatis-plus-generator</artifactId>
  135. <version>${mybatis_plus.version}</version>
  136. </dependency>
  137. <!-- <dependency>
  138. <groupId>javax.persistence</groupId>
  139. <artifactId>javax.persistence-api</artifactId>
  140. <version>2.2</version>
  141. </dependency>-->
  142. <dependency>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  145. <version>${springboot.version}</version>
  146. </dependency>
  147. <!-- Spring Data Redis -->
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-data-redis</artifactId>
  151. <version>${springboot.version}</version>
  152. </dependency>
  153. <!--jwt 鉴权-->
  154. <dependency>
  155. <groupId>com.auth0</groupId>
  156. <artifactId>java-jwt</artifactId>
  157. <version>3.3.0</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>io.jsonwebtoken</groupId>
  161. <artifactId>jjwt</artifactId>
  162. <version>0.9.0</version>
  163. </dependency>
  164. <!-- redis 环境 -->
  165. <dependency>
  166. <groupId>org.springframework.session</groupId>
  167. <artifactId>spring-session-data-redis</artifactId>
  168. <version>2.1.13.RELEASE</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.redisson</groupId>
  172. <artifactId>redisson</artifactId>
  173. <version>3.5.0</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-starter-amqp</artifactId>
  178. <version>${springboot.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.codehaus.janino</groupId>
  182. <artifactId>janino</artifactId>
  183. <version>3.0.12</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.sndyuk</groupId>
  187. <artifactId>logback-more-appenders</artifactId>
  188. <version>1.8.5</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.fluentd</groupId>
  192. <artifactId>fluent-logger</artifactId>
  193. <version>0.3.4</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.springframework.boot</groupId>
  197. <artifactId>spring-boot-test-autoconfigure</artifactId>
  198. <version>2.1.17.RELEASE</version>
  199. <scope>test</scope>
  200. </dependency>
  201. <!--foest-->
  202. <dependency>
  203. <groupId>com.dtflys.forest</groupId>
  204. <artifactId>forest-spring-boot-starter</artifactId>
  205. <version>1.5.24</version>
  206. <exclusions>
  207. <exclusion>
  208. <artifactId>httpclient-cache</artifactId>
  209. <groupId>org.apache.httpcomponents</groupId>
  210. </exclusion>
  211. <exclusion>
  212. <artifactId>commons-logging</artifactId>
  213. <groupId>commons-logging</groupId>
  214. </exclusion>
  215. <exclusion>
  216. <artifactId>commons-io</artifactId>
  217. <groupId>commons-io</groupId>
  218. </exclusion>
  219. </exclusions>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.github.dozermapper</groupId>
  223. <artifactId>dozer-core</artifactId>
  224. <version>${dozer.version}</version>
  225. </dependency>
  226. <!-- JSON工具类 -->
  227. <dependency>
  228. <groupId>com.fasterxml.jackson.core</groupId>
  229. <artifactId>jackson-databind</artifactId>
  230. <version>2.9.10.6</version>
  231. </dependency>
  232. <!-- 阿里JSON解析器 -->
  233. <dependency>
  234. <groupId>com.alibaba</groupId>
  235. <artifactId>fastjson</artifactId>
  236. <version>${fastjson.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.jpedal</groupId>
  240. <artifactId>OpenViewerFX</artifactId>
  241. <version>6.6.14</version>
  242. </dependency>
  243. <!--基础配置-->
  244. <dependency>
  245. <groupId>com.poyee</groupId>
  246. <artifactId>poyee-base</artifactId>
  247. <version>${model.version}</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>com.poyee</groupId>
  251. <artifactId>poyee-checklist</artifactId>
  252. <version>${model.version}</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>com.poyee</groupId>
  256. <artifactId>poyee-system</artifactId>
  257. <version>${model.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.poyee</groupId>
  261. <artifactId>poyee-courier</artifactId>
  262. <version>${model.version}</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>com.poyee</groupId>
  266. <artifactId>auction-order</artifactId>
  267. <version>${model.version}</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.poyee</groupId>
  271. <artifactId>poyee-pay</artifactId>
  272. <version>${model.version}</version>
  273. </dependency>
  274. </dependencies>
  275. </dependencyManagement>
  276. <modules>
  277. <module>poyee-base</module>
  278. <module>auction-order</module>
  279. <module>poyee-pay</module>
  280. <module>poyee-checklist</module>
  281. <module>poyee-system</module>
  282. <module>poyee-courier</module>
  283. </modules>
  284. <build>
  285. <plugins>
  286. <plugin>
  287. <groupId>org.apache.maven.plugins</groupId>
  288. <artifactId>maven-compiler-plugin</artifactId>
  289. <version>3.1</version>
  290. <configuration>
  291. <source>${java.version}</source>
  292. <target>${java.version}</target>
  293. <encoding>${project.build.sourceEncoding}</encoding>
  294. <!--<compilerArguments>
  295. <bootclasspath>${java.home}/lib/rt.jar${path.separator}${java.home}/lib/jce.jar</bootclasspath>
  296. </compilerArguments>-->
  297. </configuration>
  298. </plugin>
  299. </plugins>
  300. </build>
  301. </project>