pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.8.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.izouma</groupId>
  12. <artifactId>imt</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>imt</name>
  15. <description>imt</description>
  16. <repositories>
  17. <repository>
  18. <id>nexus-aliyun</id>
  19. <url>https://maven.aliyun.com/repository/central</url>
  20. </repository>
  21. <repository>
  22. <id>Local repository</id>
  23. <url>file://${basedir}/libs</url>
  24. </repository>
  25. <!-- <repository>-->
  26. <!-- <id>spring-libs-milestone</id>-->
  27. <!-- <url>https://repo.spring.io/libs-milestone</url>-->
  28. <!-- <snapshots>-->
  29. <!-- <enabled>false</enabled>-->
  30. <!-- </snapshots>-->
  31. <!-- </repository>-->
  32. </repositories>
  33. <!-- <pluginRepositories>-->
  34. <!-- <pluginRepository>-->
  35. <!-- <id>spring-plugins-release</id>-->
  36. <!-- <url>https://repo.spring.io/plugins-release</url>-->
  37. <!-- <snapshots>-->
  38. <!-- <enabled>false</enabled>-->
  39. <!-- </snapshots>-->
  40. <!-- </pluginRepository>-->
  41. <!-- </pluginRepositories>-->
  42. <properties>
  43. <java.version>1.8</java.version>
  44. <skipTests>true</skipTests>
  45. <poi.verion>3.17</poi.verion>
  46. <javawx.version>3.5.0</javawx.version>
  47. <aliyun.oss.version>2.8.3</aliyun.oss.version>
  48. <aliyun.core.version>4.1.0</aliyun.core.version>
  49. </properties>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. <dependencies>
  59. <!-- <dependency>-->
  60. <!-- <groupId>org.pegdown</groupId>-->
  61. <!-- <artifactId>pegdown</artifactId>-->
  62. <!-- <version>1.4.2</version>-->
  63. <!-- </dependency>-->
  64. <!-- <dependency>-->
  65. <!-- <groupId>io.github.swagger2markup</groupId>-->
  66. <!-- <artifactId>swagger2markup</artifactId>-->
  67. <!-- <version>1.3.3</version>-->
  68. <!-- </dependency>-->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-test</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.security</groupId>
  76. <artifactId>spring-security-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-jpa</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-security</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-web</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-cache</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.github.ben-manes.caffeine</groupId>
  97. <artifactId>caffeine</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>javax.validation</groupId>
  101. <artifactId>validation-api</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>mysql</groupId>
  105. <artifactId>mysql-connector-java</artifactId>
  106. <scope>runtime</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.hibernate</groupId>
  110. <artifactId>hibernate-envers</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-configuration-processor</artifactId>
  115. <optional>true</optional>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.projectlombok</groupId>
  119. <artifactId>lombok</artifactId>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-pool2</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-beanutils</groupId>
  128. <artifactId>commons-beanutils</artifactId>
  129. <version>1.9.4</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.commons</groupId>
  133. <artifactId>commons-text</artifactId>
  134. <version>1.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.jsonwebtoken</groupId>
  138. <artifactId>jjwt</artifactId>
  139. <version>0.9.1</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.google.code.findbugs</groupId>
  143. <artifactId>annotations</artifactId>
  144. <version>3.0.1</version>
  145. <scope>provided</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.github.binarywang</groupId>
  149. <artifactId>weixin-java-mp</artifactId>
  150. <version>${javawx.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.github.binarywang</groupId>
  154. <artifactId>weixin-java-miniapp</artifactId>
  155. <version>${javawx.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.github.binarywang</groupId>
  159. <artifactId>weixin-java-pay</artifactId>
  160. <version>${javawx.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.github.binarywang</groupId>
  164. <artifactId>weixin-java-open</artifactId>
  165. <version>${javawx.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.aliyun.oss</groupId>
  169. <artifactId>aliyun-sdk-oss</artifactId>
  170. <version>${aliyun.oss.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.aliyun</groupId>
  174. <artifactId>aliyun-java-sdk-core</artifactId>
  175. <version>${aliyun.core.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.github.kevinsawicki</groupId>
  179. <artifactId>http-request</artifactId>
  180. <version>6.0</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.poi</groupId>
  184. <artifactId>poi</artifactId>
  185. <version>${poi.verion}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.poi</groupId>
  189. <artifactId>poi-ooxml</artifactId>
  190. <version>${poi.verion}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>cglib</groupId>
  194. <artifactId>cglib</artifactId>
  195. <version>3.1</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.alibaba</groupId>
  199. <artifactId>easyexcel</artifactId>
  200. <version>2.0.4</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.reflections</groupId>
  204. <artifactId>reflections</artifactId>
  205. <version>0.9.11</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.velocity</groupId>
  209. <artifactId>velocity</artifactId>
  210. <version>1.7</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.velocity</groupId>
  214. <artifactId>velocity-tools</artifactId>
  215. <version>2.0</version>
  216. </dependency>
  217. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  218. <dependency>
  219. <groupId>com.belerweb</groupId>
  220. <artifactId>pinyin4j</artifactId>
  221. <version>2.5.1</version>
  222. </dependency>
  223. <!-- swagger -->
  224. <dependency>
  225. <groupId>io.springfox</groupId>
  226. <artifactId>springfox-swagger2</artifactId>
  227. <version>2.9.1</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>io.springfox</groupId>
  231. <artifactId>springfox-swagger-ui</artifactId>
  232. <version>2.9.1</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.springframework.boot</groupId>
  236. <artifactId>spring-boot-starter-freemarker</artifactId>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.alibaba</groupId>
  240. <artifactId>fastjson</artifactId>
  241. <version>1.2.37</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.ning</groupId>
  245. <artifactId>async-http-client</artifactId>
  246. <version>1.9.32</version>
  247. </dependency>
  248. <!-- 钉钉 -->
  249. <dependency>
  250. <groupId>com.github.whvcse</groupId>
  251. <artifactId>easy-captcha</artifactId>
  252. <version>1.6.2</version>
  253. </dependency>
  254. <!-- HUTOOL -->
  255. <dependency>
  256. <groupId>cn.hutool</groupId>
  257. <artifactId>hutool-all</artifactId>
  258. <version>5.3.0</version>
  259. </dependency>
  260. <!-- 邮件 -->
  261. <dependency>
  262. <groupId>org.springframework.boot</groupId>
  263. <artifactId>spring-boot-starter-mail</artifactId>
  264. </dependency>
  265. <!-- aip -->
  266. <dependency>
  267. <groupId>com.baidu.aip</groupId>
  268. <artifactId>java-sdk</artifactId>
  269. <version>4.15.1</version>
  270. <exclusions>
  271. <exclusion>
  272. <groupId>org.slf4j</groupId>
  273. <artifactId>slf4j-simple</artifactId>
  274. </exclusion>
  275. </exclusions>
  276. </dependency>
  277. <!-- 支付宝支付 -->
  278. <dependency>
  279. <groupId>com.alipay.sdk</groupId>
  280. <artifactId>alipay-easysdk</artifactId>
  281. <version>2.1.0</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>com.alipay.sdk</groupId>
  285. <artifactId>alipay-sdk-java</artifactId>
  286. <version>4.11.8.ALL</version>
  287. </dependency>
  288. </dependencies>
  289. </project>