pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>crmeb-common</module>
  8. <module>crmeb-service</module>
  9. <module>crmeb-admin</module>
  10. <module>crmeb-front</module>
  11. </modules>
  12. <groupId>com.zbkj</groupId>
  13. <artifactId>crmeb</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>crmeb</name>
  16. <description>Crmeb project for Spring Boot</description>
  17. <properties>
  18. <springboot.version>2.2.6.RELEASE</springboot.version>
  19. <java.version>1.8</java.version>
  20. <springfox.version>2.9.2</springfox.version>
  21. <swagger-models.version>1.5.22</swagger-models.version>
  22. <swagger-bootstrap-ui.version>1.9.3</swagger-bootstrap-ui.version>
  23. <!-- 兼容个别 mav 环境 GBK问题 -->
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <fastjson.version>1.2.56</fastjson.version>
  26. <druid.version>1.1.20</druid.version>
  27. <mysql.version>5.1.24</mysql.version>
  28. <mysql.plus.version>3.3.1</mysql.plus.version>
  29. </properties>
  30. <!-- 依赖声明 -->
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-dependencies</artifactId>
  36. <version>${springboot.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>${fastjson.version}</version>
  45. </dependency>
  46. <!--添加 Alibaba 数据源-->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid</artifactId>
  50. <version>${druid.version}</version>
  51. </dependency>
  52. <!--访问mysql-->
  53. <!--JDBC-->
  54. <!-- MySql 5.5 Connector -->
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <version>${mysql.version}</version>
  59. </dependency>
  60. <!--代码自动生成工具-->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. <version>${mysql.plus.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>junit</groupId>
  68. <artifactId>junit</artifactId>
  69. <version>4.12</version>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-test</artifactId>
  75. <version>5.2.5.RELEASE</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.baomidou</groupId>
  80. <artifactId>mybatis-plus</artifactId>
  81. <version>3.3.1</version>
  82. </dependency>
  83. <!--generator-->
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-generator</artifactId>
  87. <version>3.3.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.swagger</groupId>
  91. <artifactId>swagger-annotations</artifactId>
  92. <version>1.5.21</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.swagger</groupId>
  96. <artifactId>swagger-models</artifactId>
  97. <version>1.5.21</version>
  98. </dependency>
  99. <!-- doc -->
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger2</artifactId>
  103. <version>${springfox.version}</version>
  104. <exclusions>
  105. <exclusion>
  106. <groupId>io.swagger</groupId>
  107. <artifactId>swagger-models</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.github.xiaoymin</groupId>
  113. <artifactId>swagger-bootstrap-ui</artifactId>
  114. <version>${swagger-bootstrap-ui.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>net.logstash.logback</groupId>
  118. <artifactId>logstash-logback-encoder</artifactId>
  119. <version>5.3</version>
  120. </dependency>
  121. <!-- Spring Boot Redis 依赖 -->
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-data-redis</artifactId>
  125. <version>2.2.0.RELEASE</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>redis.clients</groupId>
  129. <artifactId>jedis</artifactId>
  130. <version>3.1.0</version>
  131. </dependency>
  132. <!-- 分页插件 -->
  133. <dependency>
  134. <groupId>com.github.pagehelper</groupId>
  135. <artifactId>pagehelper-spring-boot-starter</artifactId>
  136. <version>1.2.5</version>
  137. <!-- mybatis plus 和 pagehelper 冲突-->
  138. <exclusions>
  139. <exclusion>
  140. <groupId>org.mybatis</groupId>
  141. <artifactId>mybatis</artifactId>
  142. </exclusion>
  143. </exclusions>
  144. </dependency>
  145. <dependency>
  146. <groupId>javax.validation</groupId>
  147. <artifactId>validation-api</artifactId>
  148. <version>1.1.0.Final</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>cn.hutool</groupId>
  152. <artifactId>hutool-all</artifactId>
  153. <version>4.5.7</version>
  154. </dependency>
  155. <!--httpclient-->
  156. <dependency>
  157. <groupId>org.apache.httpcomponents</groupId>
  158. <artifactId>httpclient</artifactId>
  159. <version>4.5.6</version>
  160. </dependency>
  161. <!--字符串操作-->
  162. <dependency>
  163. <groupId>org.apache.commons</groupId>
  164. <artifactId>commons-lang3</artifactId>
  165. <version>3.5</version>
  166. </dependency>
  167. <!--导出excel-->
  168. <dependency>
  169. <groupId>org.apache.poi</groupId>
  170. <artifactId>poi</artifactId>
  171. <version>3.17</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.poi</groupId>
  175. <artifactId>poi-ooxml</artifactId>
  176. <version>3.17</version>
  177. </dependency>
  178. <!-- Apache Commons FileUpload -->
  179. <dependency>
  180. <groupId>commons-fileupload</groupId>
  181. <artifactId>commons-fileupload</artifactId>
  182. <version>1.3.3</version>
  183. </dependency>
  184. <!-- Apache Commons IO -->
  185. <dependency>
  186. <groupId>commons-io</groupId>
  187. <artifactId>commons-io</artifactId>
  188. <version>2.4</version>
  189. </dependency>
  190. <!-- thumbnailator 图片压缩工具 -->
  191. <dependency>
  192. <groupId>net.coobird</groupId>
  193. <artifactId>thumbnailator</artifactId>
  194. <version>0.4.8</version>
  195. </dependency>
  196. <!--阿里云oss上传-->
  197. <dependency>
  198. <groupId>com.aliyun.oss</groupId>
  199. <artifactId>aliyun-sdk-oss</artifactId>
  200. <version>3.5.0</version>
  201. </dependency>
  202. <!--腾讯云COS-->
  203. <dependency>
  204. <groupId>com.qcloud</groupId>
  205. <artifactId>cos_api</artifactId>
  206. <version>5.6.22</version>
  207. </dependency>
  208. <!-- 七牛云 -->
  209. <dependency>
  210. <groupId>com.qiniu</groupId>
  211. <artifactId>qiniu-java-sdk</artifactId>
  212. <version>7.2.28</version>
  213. </dependency>
  214. <!--xml-->
  215. <dependency>
  216. <groupId>dom4j</groupId>
  217. <artifactId>dom4j</artifactId>
  218. <version>1.6.1</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.thoughtworks.xstream</groupId>
  222. <artifactId>xstream</artifactId>
  223. <version>1.4.10</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.mongodb</groupId>
  227. <artifactId>mongodb-driver-core</artifactId>
  228. <version>3.8.2</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>com.vaadin.external.google</groupId>
  232. <artifactId>android-json</artifactId>
  233. <version>0.0.20131108.vaadin1</version>
  234. <scope>compile</scope>
  235. </dependency>
  236. <!--图片上传-->
  237. <dependency>
  238. <groupId>org.apache.httpcomponents</groupId>
  239. <artifactId>httpmime</artifactId>
  240. <version>4.5.2</version>
  241. </dependency>
  242. <!--谷歌二维码-->
  243. <dependency>
  244. <groupId>com.google.zxing</groupId>
  245. <artifactId>core</artifactId>
  246. <version>3.3.3</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.google.zxing</groupId>
  250. <artifactId>javase</artifactId>
  251. <version>3.3.3</version>
  252. </dependency>
  253. <!--中文转拼音-->
  254. <dependency>
  255. <groupId>com.belerweb</groupId>
  256. <artifactId>pinyin4j</artifactId>
  257. <version>2.5.0</version>
  258. </dependency>
  259. <!--解析JWT-->
  260. <dependency>
  261. <groupId>io.jsonwebtoken</groupId>
  262. <artifactId>jjwt</artifactId>
  263. <version>0.9.1</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>com.auth0</groupId>
  267. <artifactId>jwks-rsa</artifactId>
  268. <version>0.9.0</version>
  269. </dependency>
  270. <!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java -->
  271. <dependency>
  272. <groupId>com.alipay.sdk</groupId>
  273. <artifactId>alipay-sdk-java</artifactId>
  274. <version>4.15.20.ALL</version>
  275. </dependency>
  276. </dependencies>
  277. </dependencyManagement>
  278. <build>
  279. <plugins>
  280. <plugin>
  281. <groupId>org.apache.maven.plugins</groupId>
  282. <artifactId>maven-compiler-plugin</artifactId>
  283. <version>3.6.1</version>
  284. <configuration>
  285. <source>1.8</source>
  286. <target>1.8</target>
  287. <encoding>UTF-8</encoding>
  288. <!-- java8 保留参数名编译参数 -->
  289. <compilerArgument>-parameters</compilerArgument>
  290. <compilerArguments>
  291. <verbose/>
  292. </compilerArguments>
  293. <!-- <failOnMissingWebXml>false</failOnMissingWebXml> -->
  294. </configuration>
  295. </plugin>
  296. <plugin>
  297. <groupId>org.apache.maven.plugins</groupId>
  298. <artifactId>maven-resources-plugin</artifactId>
  299. <configuration>
  300. <nonFilteredFileExtensions>
  301. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  302. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  303. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  304. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  305. <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
  306. <nonFilteredFileExtension>xls</nonFilteredFileExtension>
  307. <nonFilteredFileExtension>zip</nonFilteredFileExtension>
  308. <nonFilteredFileExtension>cer</nonFilteredFileExtension>
  309. <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
  310. <nonFilteredFileExtension>py</nonFilteredFileExtension>
  311. </nonFilteredFileExtensions>
  312. </configuration>
  313. </plugin>
  314. </plugins>
  315. <defaultGoal>compile</defaultGoal>
  316. </build>
  317. <profiles>
  318. <!-- 开发 -->
  319. <profile>
  320. <id>dev</id>
  321. <activation>
  322. <!--默认激活配置-->
  323. <activeByDefault>true</activeByDefault>
  324. </activation>
  325. <properties>
  326. <!--当前环境-->
  327. <profile.name>dev</profile.name>
  328. </properties>
  329. </profile>
  330. <!-- 测试 -->
  331. <profile>
  332. <id>test</id>
  333. <properties>
  334. <!--当前环境-->
  335. <profile.name>test</profile.name>
  336. </properties>
  337. </profile>
  338. <!-- 生产 -->
  339. <profile>
  340. <id>prod</id>
  341. <properties>
  342. <!--当前环境,生产环境为空-->
  343. <profile.name>prod</profile.name>
  344. </properties>
  345. </profile>
  346. </profiles>
  347. </project>