pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.fufan</groupId>
  6. <artifactId>MTPlatform</artifactId>
  7. <version>V2.0.20241211</version>
  8. <packaging>war</packaging>
  9. <name>MTPlatform</name>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.5.15.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <mybatis>2.2.2</mybatis>
  21. <mysql-connector-java>8.0.13</mysql-connector-java>
  22. <spring-boot-starter-redis>1.5.6</spring-boot-starter-redis>
  23. <fastjson>1.2.83</fastjson>
  24. <druid>1.1.9</druid>
  25. <mybatisplus>1.0.5</mybatisplus>
  26. <mybatis-plus>2.2.0</mybatis-plus>
  27. <util>1.7</util>
  28. <jaxen>1.1.6</jaxen>
  29. <dom4j>1.6.1</dom4j>
  30. <commons-codec>1.9</commons-codec>
  31. <commons-lang3>3.7</commons-lang3>
  32. <spring-security-core>5.5.7</spring-security-core>
  33. <lombok>1.18.30</lombok>
  34. <jersey>1.8</jersey>
  35. <xstream>1.4.10</xstream>
  36. <logback-classic>1.1.11</logback-classic>
  37. <springboot-mybatisplus>3.1.2</springboot-mybatisplus>
  38. <springfox-swagger2>2.9.2</springfox-swagger2>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.redisson</groupId>
  43. <!-- for Spring Data Redis v.2.1.x -->
  44. <artifactId>redisson-spring-data-18</artifactId>
  45. <version>3.12.2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-io</groupId>
  49. <artifactId>commons-io</artifactId>
  50. <version>2.6</version>
  51. </dependency>
  52. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>easyexcel</artifactId>
  56. <version>2.2.11</version>
  57. </dependency>
  58. <!--servlet 支持-->
  59. <dependency>
  60. <groupId>javax.servlet</groupId>
  61. <artifactId>javax.servlet-api</artifactId>
  62. </dependency>
  63. <!-- spring-boot 模块 -->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter</artifactId>
  67. </dependency>
  68. <!-- jwt依赖-->
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt</artifactId>
  72. <version>0.9.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-collections</groupId>
  76. <artifactId>commons-collections</artifactId>
  77. <version>3.2.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. <version>${lombok}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>ch.qos.logback</groupId>
  86. <artifactId>logback-classic</artifactId>
  87. <version>${logback-classic}</version>
  88. </dependency>
  89. <!--<dependency>-->
  90. <!--<groupId>org.springframework.boot</groupId>-->
  91. <!--<artifactId>spring-boot-configuration-processor</artifactId>-->
  92. <!--<optional>true</optional>-->
  93. <!--</dependency>-->
  94. <!-- <dependency>-->
  95. <!-- <groupId>org.apache.poi</groupId>-->
  96. <!-- <artifactId>poi-ooxml</artifactId>-->
  97. <!-- <version>${poi}</version>-->
  98. <!-- </dependency>-->
  99. <dependency>
  100. <groupId>org.springframework.security</groupId>
  101. <artifactId>spring-security-core</artifactId>
  102. <version>${spring-security-core}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-lang3</artifactId>
  107. <version>${commons-lang3}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-codec</groupId>
  111. <artifactId>commons-codec</artifactId>
  112. <version>${commons-codec}</version>
  113. </dependency>
  114. <!--邮件支持-->
  115. <dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-starter-mail</artifactId>
  118. </dependency>
  119. <!-- 引入log4j2依赖 -->
  120. <!--<dependency>-->
  121. <!--<groupId>org.springframework.boot</groupId>-->
  122. <!--<artifactId>spring-boot-starter-log4j2</artifactId>-->
  123. <!--</dependency>-->
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-web</artifactId>
  127. <!--tomcat依赖排除-->
  128. <!--<exclusions>-->
  129. <!--<exclusion>-->
  130. <!--<groupId>org.springframework.boot</groupId>-->
  131. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  132. <!--</exclusion>-->
  133. <!--</exclusions>-->
  134. </dependency>
  135. <!-- GET请求会包含{}字符,因此我们舍弃Tomcat容器,显性指定改用jetty -->
  136. <!--<dependency>-->
  137. <!--<groupId>org.springframework.boot</groupId>-->
  138. <!--<artifactId>spring-boot-starter-jetty</artifactId>-->
  139. <!--</dependency>-->
  140. <!--<dependency> &lt;!&ndash;添加热部署依赖 &ndash;&gt;-->
  141. <!--<groupId>org.springframework.boot</groupId>-->
  142. <!--<artifactId>spring-boot-devtools</artifactId>-->
  143. <!--</dependency>-->
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-test</artifactId>
  147. <scope>test</scope>
  148. </dependency>
  149. <!--mysql-->
  150. <dependency>
  151. <groupId>mysql</groupId>
  152. <artifactId>mysql-connector-java</artifactId>
  153. <version>${mysql-connector-java}</version>
  154. </dependency>
  155. <!--mybatis-->
  156. <dependency>
  157. <groupId>org.mybatis.spring.boot</groupId>
  158. <artifactId>mybatis-spring-boot-starter</artifactId>
  159. <version>${mybatis}</version>
  160. </dependency>
  161. <!--redis-->
  162. <dependency>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-starter-data-redis</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.springframework.session</groupId>
  168. <artifactId>spring-session-data-redis</artifactId>
  169. </dependency>
  170. <!-- JSON -->
  171. <dependency>
  172. <groupId>com.alibaba</groupId>
  173. <artifactId>fastjson</artifactId>
  174. <version>${fastjson}</version>
  175. </dependency>
  176. <!-- <dependency>-->
  177. <!-- <groupId>com.alibaba</groupId>-->
  178. <!-- <artifactId>fastjson</artifactId>-->
  179. <!-- <version>1.2.47</version>-->
  180. <!-- </dependency>-->
  181. <!--druid-->
  182. <dependency>
  183. <groupId>com.alibaba</groupId>
  184. <artifactId>druid-spring-boot-starter</artifactId>
  185. <version>${druid}</version>
  186. </dependency>
  187. <!-- mybatis Plus 依赖 -->
  188. <dependency>
  189. <groupId>com.baomidou</groupId>
  190. <artifactId>mybatisplus-spring-boot-starter</artifactId>
  191. <version>${mybatisplus}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.baomidou</groupId>
  195. <artifactId>mybatis-plus</artifactId>
  196. <version>${mybatis-plus}</version>
  197. </dependency>
  198. <!--demo4j-->
  199. <dependency>
  200. <groupId>dom4j</groupId>
  201. <artifactId>dom4j</artifactId>
  202. <version>${dom4j}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>jaxen</groupId>
  206. <artifactId>jaxen</artifactId>
  207. <version>${jaxen}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.sun.jersey</groupId>
  211. <artifactId>jersey-client</artifactId>
  212. <version>${jersey}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>com.sun.jersey</groupId>
  216. <artifactId>jersey-json</artifactId>
  217. <version>${jersey}</version>
  218. </dependency>
  219. <!-- <dependency>-->
  220. <!-- <groupId>com.thoughtworks.xstream</groupId>-->
  221. <!-- <artifactId>xstream</artifactId>-->
  222. <!-- <version>${xstream}</version>-->
  223. <!-- </dependency>-->
  224. <!-- Liby 2019-08-12 -->
  225. <dependency>
  226. <groupId>org.springframework</groupId>
  227. <artifactId>spring-web</artifactId>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.springframework</groupId>
  231. <artifactId>spring-webmvc</artifactId>
  232. </dependency>
  233. <dependency>
  234. <groupId>io.springfox</groupId>
  235. <artifactId>springfox-swagger2</artifactId>
  236. <version>${springfox-swagger2}</version>
  237. <exclusions>
  238. <exclusion>
  239. <groupId>io.swagger</groupId>
  240. <artifactId>swagger-models</artifactId>
  241. </exclusion>
  242. </exclusions>
  243. </dependency>
  244. <dependency>
  245. <groupId>com.github.xiaoymin</groupId>
  246. <artifactId>knife4j-spring-boot-starter</artifactId>
  247. <version>2.0.2</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>io.springfox</groupId>
  251. <artifactId>springfox-swagger-ui</artifactId>
  252. <version>${springfox-swagger2}</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>io.springfox</groupId>
  256. <artifactId>springfox-bean-validators</artifactId>
  257. <version>${springfox-swagger2}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>io.swagger</groupId>
  261. <artifactId>swagger-models</artifactId>
  262. <version>1.5.21</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.junit.jupiter</groupId>
  266. <artifactId>junit-jupiter-api</artifactId>
  267. <version>RELEASE</version>
  268. <scope>compile</scope>
  269. </dependency>
  270. <dependency>
  271. <groupId>com.microsoft.sqlserver</groupId>
  272. <artifactId>sqljdbc4</artifactId>
  273. <version>4.0</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.springframework</groupId>
  277. <artifactId>spring-test</artifactId>
  278. <version>RELEASE</version>
  279. <scope>compile</scope>
  280. </dependency>
  281. <!--分页插件-->
  282. <dependency>
  283. <groupId>com.github.pagehelper</groupId>
  284. <artifactId>pagehelper-spring-boot-starter</artifactId>
  285. <version>1.2.5</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>com.baomidou</groupId>
  289. <artifactId>mybatis-plus-core</artifactId>
  290. <version>3.2.0</version>
  291. <exclusions>
  292. <exclusion>
  293. <groupId>com.github.jsqlparser</groupId>
  294. <artifactId>jsqlparser</artifactId>
  295. </exclusion>
  296. </exclusions>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.baomidou</groupId>
  300. <artifactId>mybatis-plus</artifactId>
  301. <version>2.1.4</version>
  302. </dependency>
  303. <!-- 校验 -->
  304. <dependency>
  305. <groupId>javax.validation</groupId>
  306. <artifactId>validation-api</artifactId>
  307. <version>2.0.1.Final</version>
  308. </dependency>
  309. <!-- 阿里云短信 -->
  310. <dependency>
  311. <groupId>com.aliyun</groupId>
  312. <artifactId>aliyun-java-sdk-core</artifactId>
  313. <version>4.3.2</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>com.aliyun</groupId>
  317. <artifactId>aliyun-java-sdk-push</artifactId>
  318. <version>3.11.0</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>com.aliyun</groupId>
  322. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  323. <version>1.1.0</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.springframework.boot</groupId>
  327. <artifactId>spring-boot-starter-actuator</artifactId>
  328. </dependency>
  329. <dependency>
  330. <groupId>org.springframework.boot</groupId>
  331. <artifactId>spring-boot-starter-websocket</artifactId>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.springframework.boot</groupId>
  335. <artifactId>spring-boot-starter-webflux</artifactId>
  336. <version>2.1.1.RELEASE</version>
  337. </dependency>
  338. <!-- Maven依赖 -->
  339. <dependency>
  340. <groupId>org.bouncycastle</groupId>
  341. <artifactId>bcprov-jdk15on</artifactId>
  342. <version>1.70</version>
  343. </dependency>
  344. </dependencies>
  345. <build>
  346. <plugins>
  347. <plugin>
  348. <groupId>org.springframework.boot</groupId>
  349. <artifactId>spring-boot-maven-plugin</artifactId>
  350. </plugin>
  351. <plugin>
  352. <groupId>org.apache.maven.plugins</groupId>
  353. <artifactId>maven-compiler-plugin</artifactId>
  354. <configuration>
  355. <source>8</source>
  356. <target>8</target>
  357. </configuration>
  358. </plugin>
  359. </plugins>
  360. </build>
  361. </project>