pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yx.face</groupId>
  8. <artifactId>nm-yqk</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>yqk-websocket-common</artifactId>
  12. <properties>
  13. <skipTests>true</skipTests>
  14. <guava.version>30.1.1-jre</guava.version>
  15. <fastjson.version>1.2.60</fastjson.version>
  16. <thumbnailator.version>0.4.8</thumbnailator.version>
  17. <zxing.core.version>3.3.3</zxing.core.version>
  18. <zxing.javase.version>3.3.3</zxing.javase.version>
  19. <jakarta.persistence-api.version>2.2.3</jakarta.persistence-api.version>
  20. <crypto-gmsm.version>1.0</crypto-gmsm.version>
  21. <commons-io.version>2.8.0</commons-io.version>
  22. <commons-lang3.version>3.12.0</commons-lang3.version>
  23. <commons-codec.version>1.15</commons-codec.version>
  24. <okhttp.version>3.10.0</okhttp.version>
  25. <hutool-all.version>5.8.11</hutool-all.version>
  26. <java-jw.version>3.14.0</java-jw.version>
  27. <spring-boot-starter-data-redis.version>2.2.6.RELEASE</spring-boot-starter-data-redis.version>
  28. <easyexcel.version>2.2.8</easyexcel.version>
  29. <knife4j-spring-boot-starter.version>3.0.2</knife4j-spring-boot-starter.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-tomcat</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-undertow</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-validation</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-aop</artifactId>
  69. </dependency>
  70. <!--========================【数据库相关依赖】===============================-->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-redis</artifactId>
  74. <version>1.4.1.RELEASE</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>commons-net</groupId>
  78. <artifactId>commons-net</artifactId>
  79. <version>3.6</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  84. <version>1.5.10.RELEASE</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-configuration-processor</artifactId>
  89. <optional>true</optional>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  92. <dependency>
  93. <groupId>org.bouncycastle</groupId>
  94. <artifactId>bcprov-jdk15on</artifactId>
  95. <version>1.70</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.jodah</groupId>
  99. <artifactId>expiringmap</artifactId>
  100. <version>0.5.8</version>
  101. </dependency>
  102. <!-- websocket相关 -->
  103. <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
  104. <dependency>
  105. <groupId>io.netty</groupId>
  106. <artifactId>netty-all</artifactId>
  107. <version>4.1.45.Final</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-data-redis</artifactId>
  112. <version>${spring-boot-starter-data-redis.version}</version>
  113. </dependency>
  114. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
  115. <dependency>
  116. <groupId>org.apache.commons</groupId>
  117. <artifactId>commons-pool2</artifactId>
  118. <version>2.11.1</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-io</groupId>
  122. <artifactId>commons-io</artifactId>
  123. <version>${commons-io.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-lang3</artifactId>
  128. <version>${commons-lang3.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>commons-codec</groupId>
  132. <artifactId>commons-codec</artifactId>
  133. <version>${commons-codec.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.google.guava</groupId>
  137. <artifactId>guava</artifactId>
  138. <version>${guava.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.squareup.okhttp3</groupId>
  142. <artifactId>okhttp</artifactId>
  143. <version>${okhttp.version}</version>
  144. </dependency>
  145. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  146. <dependency>
  147. <groupId>cn.hutool</groupId>
  148. <artifactId>hutool-all</artifactId>
  149. <version>${hutool-all.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.alibaba</groupId>
  153. <artifactId>fastjson</artifactId>
  154. <version>${fastjson.version}</version>
  155. </dependency>
  156. <!--========================【EXCEL相关依赖】===============================-->
  157. <dependency>
  158. <groupId>com.alibaba</groupId>
  159. <artifactId>easyexcel</artifactId>
  160. <version>${easyexcel.version}</version>
  161. </dependency>
  162. <!--========================【在线接口文档相关依赖】===============================-->
  163. <dependency>
  164. <groupId>com.github.xiaoymin</groupId>
  165. <artifactId>knife4j-spring-boot-starter</artifactId>
  166. <version>${knife4j-spring-boot-starter.version}</version>
  167. </dependency>
  168. <!--========================【接口安全相关依赖】===============================-->
  169. <dependency>
  170. <groupId>com.auth0</groupId>
  171. <artifactId>java-jwt</artifactId>
  172. <version>${java-jw.version}</version>
  173. </dependency>
  174. <!-- ...............二维码生成器......................................................... -->
  175. <dependency>
  176. <groupId>com.google.zxing</groupId>
  177. <artifactId>core</artifactId>
  178. <version>${zxing.core.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.google.zxing</groupId>
  182. <artifactId>javase</artifactId>
  183. <version>${zxing.javase.version}</version>
  184. </dependency>
  185. <!-- ...............图片压缩处理......................................................... -->
  186. <dependency>
  187. <groupId>net.coobird</groupId>
  188. <artifactId>thumbnailator</artifactId>
  189. <version>${thumbnailator.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>cn.superfw</groupId>
  193. <artifactId>crypto-gmsm</artifactId>
  194. <version>${crypto-gmsm.version}</version>
  195. </dependency>
  196. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  197. <dependency>
  198. <groupId>org.projectlombok</groupId>
  199. <artifactId>lombok</artifactId>
  200. <version>1.18.24</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>jakarta.persistence</groupId>
  204. <artifactId>jakarta.persistence-api</artifactId>
  205. <version>${jakarta.persistence-api.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.json</groupId>
  209. <artifactId>json</artifactId>
  210. <version>20160810</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>commons-httpclient</groupId>
  214. <artifactId>commons-httpclient</artifactId>
  215. <version>3.1</version>
  216. </dependency>
  217. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  218. <dependency>
  219. <groupId>org.dom4j</groupId>
  220. <artifactId>dom4j</artifactId>
  221. <version>2.1.3</version>
  222. </dependency>
  223. </dependencies>
  224. </project>