pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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.3.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.izouma</groupId>
  12. <artifactId>zhirongip</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>zhirong-ip</name>
  15. <description>zhirong-ip</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>jitpack.io</id>
  27. <url>https://jitpack.io</url>
  28. </repository>
  29. </repositories>
  30. <properties>
  31. <java.version>1.8</java.version>
  32. <skipTests>true</skipTests>
  33. <poi.verion>3.17</poi.verion>
  34. <javawx.version>3.5.0</javawx.version>
  35. <aliyun.oss.version>2.8.3</aliyun.oss.version>
  36. <aliyun.core.version>4.1.0</aliyun.core.version>
  37. </properties>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.security</groupId>
  54. <artifactId>spring-security-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-data-jpa</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-security</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-cache</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-aop</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.ben-manes.caffeine</groupId>
  79. <artifactId>caffeine</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>javax.validation</groupId>
  83. <artifactId>validation-api</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. <scope>runtime</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.hibernate</groupId>
  92. <artifactId>hibernate-envers</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-configuration-processor</artifactId>
  97. <optional>true</optional>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. <optional>true</optional>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-pool2</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>commons-beanutils</groupId>
  110. <artifactId>commons-beanutils</artifactId>
  111. <version>1.9.4</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.commons</groupId>
  115. <artifactId>commons-text</artifactId>
  116. <version>1.3</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.jsonwebtoken</groupId>
  120. <artifactId>jjwt</artifactId>
  121. <version>0.9.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.google.code.findbugs</groupId>
  125. <artifactId>annotations</artifactId>
  126. <version>3.0.1</version>
  127. <scope>provided</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.github.binarywang</groupId>
  131. <artifactId>weixin-java-mp</artifactId>
  132. <version>${javawx.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.github.binarywang</groupId>
  136. <artifactId>weixin-java-miniapp</artifactId>
  137. <version>${javawx.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.github.binarywang</groupId>
  141. <artifactId>weixin-java-pay</artifactId>
  142. <version>${javawx.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.github.binarywang</groupId>
  146. <artifactId>weixin-java-open</artifactId>
  147. <version>${javawx.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.aliyun.oss</groupId>
  151. <artifactId>aliyun-sdk-oss</artifactId>
  152. <version>${aliyun.oss.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.aliyun</groupId>
  156. <artifactId>aliyun-java-sdk-core</artifactId>
  157. <version>${aliyun.core.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.github.kevinsawicki</groupId>
  161. <artifactId>http-request</artifactId>
  162. <version>6.0</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.poi</groupId>
  166. <artifactId>poi</artifactId>
  167. <version>${poi.verion}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.poi</groupId>
  171. <artifactId>poi-ooxml</artifactId>
  172. <version>${poi.verion}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>cglib</groupId>
  176. <artifactId>cglib</artifactId>
  177. <version>3.1</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.alibaba</groupId>
  181. <artifactId>easyexcel</artifactId>
  182. <version>2.2.6</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.reflections</groupId>
  186. <artifactId>reflections</artifactId>
  187. <version>0.9.11</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache.velocity</groupId>
  191. <artifactId>velocity</artifactId>
  192. <version>1.7</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.velocity</groupId>
  196. <artifactId>velocity-tools</artifactId>
  197. <version>2.0</version>
  198. </dependency>
  199. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  200. <dependency>
  201. <groupId>com.belerweb</groupId>
  202. <artifactId>pinyin4j</artifactId>
  203. <version>2.5.1</version>
  204. </dependency>
  205. <!-- swagger -->
  206. <dependency>
  207. <groupId>io.springfox</groupId>
  208. <artifactId>springfox-swagger2</artifactId>
  209. <version>2.9.1</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>io.springfox</groupId>
  213. <artifactId>springfox-swagger-ui</artifactId>
  214. <version>2.9.1</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-starter-freemarker</artifactId>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.alibaba</groupId>
  222. <artifactId>fastjson</artifactId>
  223. <version>1.2.37</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.ning</groupId>
  227. <artifactId>async-http-client</artifactId>
  228. <version>1.9.32</version>
  229. </dependency>
  230. <!-- 钉钉 -->
  231. <dependency>
  232. <groupId>com.github.whvcse</groupId>
  233. <artifactId>easy-captcha</artifactId>
  234. <version>1.6.2</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.libjpegturbo</groupId>
  238. <artifactId>mozjpeg4j</artifactId>
  239. <version>1.1</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.pngquant</groupId>
  243. <artifactId>pngquant4j</artifactId>
  244. <version>1.0</version>
  245. </dependency>
  246. <!-- hutool -->
  247. <dependency>
  248. <groupId>cn.hutool</groupId>
  249. <artifactId>hutool-all</artifactId>
  250. <version>5.3.8</version>
  251. </dependency>
  252. </dependencies>
  253. </project>