pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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.4.1</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>thyyxxk</groupId>
  12. <artifactId>web-server</artifactId>
  13. <version>11.3.3</version>
  14. <name>web-server</name>
  15. <description>server for yibao-web</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <!--工具类 -->
  21. <dependency>
  22. <groupId>cn.hutool</groupId>
  23. <artifactId>hutool-all</artifactId>
  24. <version>5.8.10</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-websocket</artifactId>
  33. </dependency>
  34. <!-- 肖蟾 使用mybatis-plus-->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. <version>3.4.2</version>
  39. </dependency>
  40. <!-- 数据库中的注释-->
  41. <dependency>
  42. <groupId>io.springfox</groupId>
  43. <artifactId>springfox-swagger2</artifactId>
  44. <version>2.10.5</version>
  45. </dependency>
  46. <!--多数据源-->
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  50. <version>3.3.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-validation</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-devtools</artifactId>
  59. <scope>runtime</scope>
  60. <optional>true</optional>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.microsoft.sqlserver</groupId>
  64. <artifactId>mssql-jdbc</artifactId>
  65. <version>8.2.2.jre8</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>net.sourceforge.jtds</groupId>
  69. <artifactId>jtds</artifactId>
  70. <version>1.3.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.auth0</groupId>
  84. <artifactId>java-jwt</artifactId>
  85. <version>3.4.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>fastjson</artifactId>
  90. <version>1.2.83</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>dom4j</groupId>
  94. <artifactId>dom4j</artifactId>
  95. <version>1.6.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.dom4j</groupId>
  99. <artifactId>dom4j</artifactId>
  100. <version>2.1.3</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-configuration-processor</artifactId>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>joda-time</groupId>
  109. <artifactId>joda-time</artifactId>
  110. <version>2.10.5</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.httpcomponents</groupId>
  114. <artifactId>httpcore</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.httpcomponents</groupId>
  118. <artifactId>httpclient</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.github.wechatpay-apiv3</groupId>
  122. <artifactId>wechatpay-apache-httpclient</artifactId>
  123. <version>0.2.1</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.poi</groupId>
  127. <artifactId>poi</artifactId>
  128. <version>4.1.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.poi</groupId>
  132. <artifactId>poi-ooxml</artifactId>
  133. <version>4.1.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>junit</groupId>
  137. <artifactId>junit</artifactId>
  138. <scope>test</scope>
  139. </dependency>
  140. <!-- 拼音码转换-->
  141. <dependency>
  142. <groupId>com.belerweb</groupId>
  143. <artifactId>pinyin4j</artifactId>
  144. <version>2.5.1</version>
  145. </dependency>
  146. <!-- http外部请求接口化 -->
  147. <dependency>
  148. <groupId>com.dtflys.forest</groupId>
  149. <artifactId>forest-spring-boot-starter</artifactId>
  150. <version>1.5.13</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.jetbrains</groupId>
  154. <artifactId>annotations</artifactId>
  155. <version>24.0.1</version>
  156. <scope>compile</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.bouncycastle</groupId>
  160. <artifactId>bcprov-jdk15on</artifactId>
  161. <version>1.70</version>
  162. </dependency>
  163. </dependencies>
  164. <build>
  165. <plugins>
  166. <plugin>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-maven-plugin</artifactId>
  169. <configuration>
  170. <excludes>
  171. <exclude>
  172. <groupId>org.projectlombok</groupId>
  173. <artifactId>lombok</artifactId>
  174. </exclude>
  175. </excludes>
  176. </configuration>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-resources-plugin</artifactId>
  181. <version>2.4.3</version>
  182. </plugin>
  183. </plugins>
  184. </build>
  185. </project>