pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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>dingdong</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>dingdong</name>
  15. <description>dingdong</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. <!-- HUTOOL -->
  54. <dependency>
  55. <groupId>cn.hutool</groupId>
  56. <artifactId>hutool-all</artifactId>
  57. <version>5.3.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-data-jpa</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-security</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-web</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. <scope>runtime</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.hibernate</groupId>
  78. <artifactId>hibernate-envers</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-configuration-processor</artifactId>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.projectlombok</groupId>
  87. <artifactId>lombok</artifactId>
  88. <optional>true</optional>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-data-redis</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.commons</groupId>
  96. <artifactId>commons-pool2</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-beanutils</groupId>
  100. <artifactId>commons-beanutils</artifactId>
  101. <version>1.9.4</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.commons</groupId>
  105. <artifactId>commons-text</artifactId>
  106. <version>1.3</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.jsonwebtoken</groupId>
  110. <artifactId>jjwt</artifactId>
  111. <version>0.9.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.google.code.findbugs</groupId>
  115. <artifactId>annotations</artifactId>
  116. <version>3.0.1</version>
  117. <scope>provided</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.binarywang</groupId>
  121. <artifactId>weixin-java-mp</artifactId>
  122. <version>${javawx.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.binarywang</groupId>
  126. <artifactId>weixin-java-miniapp</artifactId>
  127. <version>${javawx.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.github.binarywang</groupId>
  131. <artifactId>weixin-java-pay</artifactId>
  132. <version>${javawx.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.github.binarywang</groupId>
  136. <artifactId>weixin-java-open</artifactId>
  137. <version>${javawx.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.aliyun.oss</groupId>
  141. <artifactId>aliyun-sdk-oss</artifactId>
  142. <version>${aliyun.oss.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.aliyun</groupId>
  146. <artifactId>aliyun-java-sdk-core</artifactId>
  147. <version>${aliyun.core.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.github.kevinsawicki</groupId>
  151. <artifactId>http-request</artifactId>
  152. <version>6.0</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.poi</groupId>
  156. <artifactId>poi</artifactId>
  157. <version>${poi.verion}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.poi</groupId>
  161. <artifactId>poi-ooxml</artifactId>
  162. <version>${poi.verion}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>cglib</groupId>
  166. <artifactId>cglib</artifactId>
  167. <version>3.1</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.alibaba</groupId>
  171. <artifactId>easyexcel</artifactId>
  172. <version>2.0.4</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.reflections</groupId>
  176. <artifactId>reflections</artifactId>
  177. <version>0.9.11</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.velocity</groupId>
  181. <artifactId>velocity</artifactId>
  182. <version>1.7</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.apache.velocity</groupId>
  186. <artifactId>velocity-tools</artifactId>
  187. <version>2.0</version>
  188. </dependency>
  189. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  190. <dependency>
  191. <groupId>com.belerweb</groupId>
  192. <artifactId>pinyin4j</artifactId>
  193. <version>2.5.1</version>
  194. </dependency>
  195. <!-- swagger -->
  196. <dependency>
  197. <groupId>io.springfox</groupId>
  198. <artifactId>springfox-swagger2</artifactId>
  199. <version>2.9.1</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>io.springfox</groupId>
  203. <artifactId>springfox-swagger-ui</artifactId>
  204. <version>2.9.1</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.springframework.boot</groupId>
  208. <artifactId>spring-boot-starter-freemarker</artifactId>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.alibaba</groupId>
  212. <artifactId>fastjson</artifactId>
  213. <version>1.2.37</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.ning</groupId>
  217. <artifactId>async-http-client</artifactId>
  218. <version>1.9.32</version>
  219. </dependency>
  220. <!-- 钉钉 -->
  221. <!-- 调用语音-->
  222. <dependency>
  223. <groupId>javazoom</groupId>
  224. <artifactId>jlayer</artifactId>
  225. <version>1.0.1</version>
  226. </dependency>
  227. <!-- TPNS移动推送 -->
  228. <dependency>
  229. <groupId>com.github.xingePush</groupId>
  230. <artifactId>xinge</artifactId>
  231. <version>1.2.2</version>
  232. </dependency>
  233. <!-- 注册userSig -->
  234. <dependency>
  235. <groupId>com.github.tencentyun</groupId>
  236. <artifactId>tls-sig-api-v2</artifactId>
  237. <version>1.1</version>
  238. </dependency>
  239. <!-- 腾讯api -->
  240. <dependency>
  241. <groupId>com.tencentcloudapi</groupId>
  242. <artifactId>tencentcloud-sdk-java</artifactId>
  243. <version>3.1.100</version>
  244. </dependency>
  245. <!-- 地图 -->
  246. <dependency>
  247. <groupId>org.gavaghan</groupId>
  248. <artifactId>geodesy</artifactId>
  249. <version>1.1.3</version>
  250. </dependency>
  251. </dependencies>
  252. </project>