pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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-linkage</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-test</artifactId>
  21. <scope>test</scope>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>asm</artifactId>
  25. <groupId>org.ow2.asm</groupId>
  26. </exclusion>
  27. <exclusion>
  28. <artifactId>accessors-smart</artifactId>
  29. <groupId>net.minidev</groupId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  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-aop</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-starter-openfeign</artifactId>
  44. </dependency>
  45. <!--========================【开发工具包依赖】===============================-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-devtools</artifactId>
  49. <scope>runtime</scope>
  50. <optional>true</optional>
  51. </dependency>
  52. <!--========================【数据库相关依赖】===============================-->
  53. <dependency>
  54. <groupId>com.github.pagehelper</groupId>
  55. <artifactId>pagehelper-spring-boot-starter</artifactId>
  56. <version>1.3.0</version>
  57. <exclusions>
  58. <exclusion>
  59. <artifactId>mybatis-spring-boot-starter</artifactId>
  60. <groupId>org.mybatis.spring.boot</groupId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>jakarta.persistence</groupId>
  66. <artifactId>jakarta.persistence-api</artifactId>
  67. <version>2.2.3</version>
  68. </dependency>
  69. <!--========================【工具类相关依赖】===============================-->
  70. <dependency>
  71. <groupId>commons-io</groupId>
  72. <artifactId>commons-io</artifactId>
  73. <version>2.8.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>3.12.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-codec</groupId>
  82. <artifactId>commons-codec</artifactId>
  83. <version>1.15</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.google.guava</groupId>
  87. <artifactId>guava</artifactId>
  88. <version>30.1.1-jre</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.squareup.okhttp3</groupId>
  92. <artifactId>okhttp</artifactId>
  93. <version>3.10.0</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  96. <dependency>
  97. <groupId>cn.hutool</groupId>
  98. <artifactId>hutool-all</artifactId>
  99. <version>5.8.11</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.alibaba</groupId>
  103. <artifactId>fastjson</artifactId>
  104. <version>1.2.60</version>
  105. </dependency>
  106. <!--========================【微信对接工具包相关依赖】===============================-->
  107. <dependency>
  108. <groupId>com.github.binarywang</groupId>
  109. <artifactId>weixin-java-miniapp</artifactId>
  110. <version>4.0.7.B</version>
  111. </dependency>
  112. <!--========================【EXCEL相关依赖】===============================-->
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>easyexcel</artifactId>
  116. <version>2.2.8</version>
  117. </dependency>
  118. <!--========================【在线接口文档相关依赖】===============================-->
  119. <dependency>
  120. <groupId>com.github.xiaoymin</groupId>
  121. <artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
  122. <version>4.2.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-redis</artifactId>
  127. <version>1.4.1.RELEASE</version>
  128. </dependency>
  129. <!--========================【接口安全相关依赖】===============================-->
  130. <dependency>
  131. <groupId>com.auth0</groupId>
  132. <artifactId>java-jwt</artifactId>
  133. <version>3.14.0</version>
  134. </dependency>
  135. <!-- ...............二维码生成器......................................................... -->
  136. <dependency>
  137. <groupId>com.google.zxing</groupId>
  138. <artifactId>core</artifactId>
  139. <version>3.3.3</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.google.zxing</groupId>
  143. <artifactId>javase</artifactId>
  144. <version>3.3.3</version>
  145. </dependency>
  146. <!-- ...............图片压缩处理......................................................... -->
  147. <dependency>
  148. <groupId>net.coobird</groupId>
  149. <artifactId>thumbnailator</artifactId>
  150. <version>0.4.8</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>cn.superfw</groupId>
  154. <artifactId>crypto-gmsm</artifactId>
  155. <version>1.0</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-starter-test</artifactId>
  160. <scope>test</scope>
  161. <exclusions>
  162. <exclusion>
  163. <artifactId>json-path</artifactId>
  164. <groupId>com.jayway.jsonpath</groupId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. </dependencies>
  169. <build>
  170. <finalName>health-code</finalName>
  171. <!--加上这个才能打包时将静态资源打进去-->
  172. <resources>
  173. <resource>
  174. <directory>${basedir}/src/main/webapp</directory>
  175. <targetPath>META-INF/resources</targetPath>
  176. <includes>
  177. <include>**/**</include>
  178. </includes>
  179. </resource>
  180. <resource>
  181. <directory>src/main/resources</directory>
  182. <includes>
  183. <include>**/*.*</include>
  184. </includes>
  185. <filtering>true</filtering>
  186. </resource>
  187. <resource>
  188. <directory>src/main/java</directory>
  189. <includes>
  190. <include>**/*.xml</include>
  191. <include>**/*.yml</include>
  192. <include>**/*.properties</include>
  193. </includes>
  194. </resource>
  195. </resources>
  196. <plugins>
  197. <plugin>
  198. <groupId>org.springframework.boot</groupId>
  199. <artifactId>spring-boot-maven-plugin</artifactId>
  200. <configuration>
  201. <excludes>
  202. <exclude>
  203. <groupId>org.projectlombok</groupId>
  204. <artifactId>lombok</artifactId>
  205. </exclude>
  206. </excludes>
  207. </configuration>
  208. </plugin>
  209. </plugins>
  210. </build>
  211. </project>