pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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>2</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>com.baomidou</groupId>
  43. <artifactId>mybatis-plus-generator</artifactId>
  44. <version>3.4.1</version>
  45. </dependency>
  46. <!-- 数据库中的注释-->
  47. <dependency>
  48. <groupId>io.springfox</groupId>
  49. <artifactId>springfox-swagger2</artifactId>
  50. <version>2.10.5</version>
  51. </dependency>
  52. <!--肖蟾 模板引擎-->
  53. <dependency>
  54. <groupId>org.apache.velocity</groupId>
  55. <artifactId>velocity-engine-core</artifactId>
  56. <version>2.3</version>
  57. </dependency>
  58. <!--多数据源-->
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  62. <version>3.3.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-validation</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-devtools</artifactId>
  71. <scope>runtime</scope>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.microsoft.sqlserver</groupId>
  76. <artifactId>mssql-jdbc</artifactId>
  77. <version>8.2.2.jre8</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>net.sourceforge.jtds</groupId>
  81. <artifactId>jtds</artifactId>
  82. <version>1.3.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-test</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <!--PostgreSQL数据库 创智的中台数据-->
  95. <dependency>
  96. <groupId>org.postgresql</groupId>
  97. <artifactId>postgresql</artifactId>
  98. <version>42.2.26</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.auth0</groupId>
  102. <artifactId>java-jwt</artifactId>
  103. <version>3.4.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>fastjson</artifactId>
  108. <version>1.2.83</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>dom4j</groupId>
  112. <artifactId>dom4j</artifactId>
  113. <version>1.6.1</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.dom4j</groupId>
  117. <artifactId>dom4j</artifactId>
  118. <version>2.1.3</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-configuration-processor</artifactId>
  123. <optional>true</optional>
  124. </dependency>
  125. <dependency>
  126. <groupId>joda-time</groupId>
  127. <artifactId>joda-time</artifactId>
  128. <version>2.10.5</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.httpcomponents</groupId>
  132. <artifactId>httpcore</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.httpcomponents</groupId>
  136. <artifactId>httpclient</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.github.wechatpay-apiv3</groupId>
  140. <artifactId>wechatpay-apache-httpclient</artifactId>
  141. <version>0.2.1</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.poi</groupId>
  145. <artifactId>poi</artifactId>
  146. <version>4.1.2</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.poi</groupId>
  150. <artifactId>poi-ooxml</artifactId>
  151. <version>4.1.2</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>junit</groupId>
  155. <artifactId>junit</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. <!-- 拼音码转换-->
  159. <dependency>
  160. <groupId>com.belerweb</groupId>
  161. <artifactId>pinyin4j</artifactId>
  162. <version>2.5.1</version>
  163. </dependency>
  164. <!-- http外部请求接口化 -->
  165. <dependency>
  166. <groupId>com.dtflys.forest</groupId>
  167. <artifactId>forest-spring-boot-starter</artifactId>
  168. <version>1.5.13</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.jetbrains</groupId>
  172. <artifactId>annotations</artifactId>
  173. <version>RELEASE</version>
  174. <scope>compile</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>cn.xfyun</groupId>
  178. <artifactId>websdk-java-speech</artifactId>
  179. <version>2.0.1</version>
  180. </dependency>
  181. </dependencies>
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin</artifactId>
  187. <configuration>
  188. <excludes>
  189. <exclude>
  190. <groupId>org.projectlombok</groupId>
  191. <artifactId>lombok</artifactId>
  192. </exclude>
  193. </excludes>
  194. </configuration>
  195. </plugin>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-resources-plugin</artifactId>
  199. <version>2.4.3</version>
  200. </plugin>
  201. </plugins>
  202. </build>
  203. </project>