pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. <parent>
  6. <groupId>com.yx.face</groupId>
  7. <artifactId>nm-yqk</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hhface-common</artifactId>
  12. <!-- <version>${project.version}</version>-->
  13. <properties>
  14. <skipTests>true</skipTests>
  15. <guava.version>30.1.1-jre</guava.version>
  16. <fastjson.version>1.2.60</fastjson.version>
  17. <thumbnailator.version>0.4.8</thumbnailator.version>
  18. <zxing.core.version>3.3.3</zxing.core.version>
  19. <zxing.javase.version>3.3.3</zxing.javase.version>
  20. <jakarta.persistence-api.version>2.2.3</jakarta.persistence-api.version>
  21. <crypto-gmsm.version>1.0</crypto-gmsm.version>
  22. <commons-io.version>2.8.0</commons-io.version>
  23. <commons-lang3.version>3.12.0</commons-lang3.version>
  24. <commons-codec.version>1.15</commons-codec.version>
  25. <okhttp.version>3.10.0</okhttp.version>
  26. <hutool-all.version>5.8.11</hutool-all.version>
  27. <java-jw.version>3.14.0</java-jw.version>
  28. <spring-boot-starter-data-redis.version>2.2.6.RELEASE</spring-boot-starter-data-redis.version>
  29. <easyexcel.version>2.2.8</easyexcel.version>
  30. <knife4j-spring-boot-starter.version>3.0.2</knife4j-spring-boot-starter.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-redis</artifactId>
  40. <version>${spring-boot-starter-data-redis.version}</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-pool2</artifactId>
  46. <version>2.11.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-io</groupId>
  50. <artifactId>commons-io</artifactId>
  51. <version>${commons-io.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-lang3</artifactId>
  56. <version>${commons-lang3.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-codec</groupId>
  60. <artifactId>commons-codec</artifactId>
  61. <version>${commons-codec.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.guava</groupId>
  65. <artifactId>guava</artifactId>
  66. <version>${guava.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.squareup.okhttp3</groupId>
  70. <artifactId>okhttp</artifactId>
  71. <version>${okhttp.version}</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  74. <dependency>
  75. <groupId>cn.hutool</groupId>
  76. <artifactId>hutool-all</artifactId>
  77. <version>${hutool-all.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>fastjson</artifactId>
  82. <version>${fastjson.version}</version>
  83. </dependency>
  84. <!--========================【EXCEL相关依赖】===============================-->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>easyexcel</artifactId>
  88. <version>${easyexcel.version}</version>
  89. </dependency>
  90. <!--========================【在线接口文档相关依赖】===============================-->
  91. <dependency>
  92. <groupId>com.github.xiaoymin</groupId>
  93. <artifactId>knife4j-spring-boot-starter</artifactId>
  94. <version>${knife4j-spring-boot-starter.version}</version>
  95. </dependency>
  96. <!--========================【接口安全相关依赖】===============================-->
  97. <dependency>
  98. <groupId>com.auth0</groupId>
  99. <artifactId>java-jwt</artifactId>
  100. <version>${java-jw.version}</version>
  101. </dependency>
  102. <!-- ...............二维码生成器......................................................... -->
  103. <dependency>
  104. <groupId>com.google.zxing</groupId>
  105. <artifactId>core</artifactId>
  106. <version>${zxing.core.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.google.zxing</groupId>
  110. <artifactId>javase</artifactId>
  111. <version>${zxing.javase.version}</version>
  112. </dependency>
  113. <!-- ...............图片压缩处理......................................................... -->
  114. <dependency>
  115. <groupId>net.coobird</groupId>
  116. <artifactId>thumbnailator</artifactId>
  117. <version>${thumbnailator.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>cn.superfw</groupId>
  121. <artifactId>crypto-gmsm</artifactId>
  122. <version>${crypto-gmsm.version}</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  125. <dependency>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. <version>1.18.24</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>jakarta.persistence</groupId>
  132. <artifactId>jakarta.persistence-api</artifactId>
  133. <version>${jakarta.persistence-api.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.json</groupId>
  137. <artifactId>json</artifactId>
  138. <version>20160810</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-httpclient</groupId>
  142. <artifactId>commons-httpclient</artifactId>
  143. <version>3.1</version>
  144. </dependency>
  145. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  146. <dependency>
  147. <groupId>org.dom4j</groupId>
  148. <artifactId>dom4j</artifactId>
  149. <version>2.1.3</version>
  150. </dependency>
  151. </dependencies>
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-jar-plugin</artifactId>
  157. <!-- <version>3.1.0</version>-->
  158. </plugin>
  159. </plugins>
  160. </build>
  161. </project>