pom.xml 8.5 KB

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