pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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>10.9.4</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. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-websocket</artifactId>
  27. </dependency>
  28. <!-- 肖蟾 使用mybatis-plus-->
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. <version>3.4.2</version>
  33. </dependency>
  34. <!--肖蟾 代码生成器-->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-generator</artifactId>
  38. <version>3.4.1</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>org.apache.velocity</groupId>
  49. <artifactId>velocity-engine-core</artifactId>
  50. <version>2.0</version>
  51. </dependency>
  52. <!--多数据源-->
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  56. <version>3.3.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.oracle.database.jdbc</groupId>
  60. <artifactId>ojdbc6</artifactId>
  61. <version>11.2.0.4</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-validation</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-devtools</artifactId>
  70. <scope>runtime</scope>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.microsoft.sqlserver</groupId>
  75. <artifactId>mssql-jdbc</artifactId>
  76. <version>7.4.1.jre8</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.projectlombok</groupId>
  80. <artifactId>lombok</artifactId>
  81. <optional>true</optional>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. <!--PostgreSQL数据库 创智的中台数据-->
  89. <dependency>
  90. <groupId>org.postgresql</groupId>
  91. <artifactId>postgresql</artifactId>
  92. <version>42.2.20</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>net.sourceforge.jtds</groupId>
  96. <artifactId>jtds</artifactId>
  97. <version>1.3.1</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.auth0</groupId>
  101. <artifactId>java-jwt</artifactId>
  102. <version>3.4.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.alibaba</groupId>
  106. <artifactId>fastjson</artifactId>
  107. <version>1.2.60</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>dom4j</groupId>
  111. <artifactId>dom4j</artifactId>
  112. <version>1.6.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.dom4j</groupId>
  116. <artifactId>dom4j</artifactId>
  117. <version>2.1.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.cxf</groupId>
  121. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  122. <version>3.1.10</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.cxf</groupId>
  126. <artifactId>cxf-rt-transports-http</artifactId>
  127. <version>3.1.10</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-configuration-processor</artifactId>
  132. <optional>true</optional>
  133. </dependency>
  134. <dependency>
  135. <groupId>joda-time</groupId>
  136. <artifactId>joda-time</artifactId>
  137. <version>2.10.5</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.httpcomponents</groupId>
  141. <artifactId>httpcore</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.httpcomponents</groupId>
  145. <artifactId>httpclient</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.github.wechatpay-apiv3</groupId>
  149. <artifactId>wechatpay-apache-httpclient</artifactId>
  150. <version>0.2.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi</artifactId>
  155. <version>4.1.2</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.poi</groupId>
  159. <artifactId>poi-ooxml</artifactId>
  160. <version>4.1.2</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>junit</groupId>
  164. <artifactId>junit</artifactId>
  165. <scope>test</scope>
  166. </dependency>
  167. <!-- 拼音码转换-->
  168. <dependency>
  169. <groupId>com.belerweb</groupId>
  170. <artifactId>pinyin4j</artifactId>
  171. <version>2.5.1</version>
  172. </dependency>
  173. <!-- http外部请求接口化 -->
  174. <dependency>
  175. <groupId>com.dtflys.forest</groupId>
  176. <artifactId>forest-spring-boot-starter</artifactId>
  177. <version>1.5.13</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.jetbrains</groupId>
  181. <artifactId>annotations</artifactId>
  182. <version>RELEASE</version>
  183. <scope>compile</scope>
  184. </dependency>
  185. <dependency>
  186. <groupId>cn.xfyun</groupId>
  187. <artifactId>websdk-java-speech</artifactId>
  188. <version>2.0.1</version>
  189. </dependency>
  190. </dependencies>
  191. <build>
  192. <plugins>
  193. <plugin>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-maven-plugin</artifactId>
  196. <configuration>
  197. <excludes>
  198. <exclude>
  199. <groupId>org.projectlombok</groupId>
  200. <artifactId>lombok</artifactId>
  201. </exclude>
  202. </excludes>
  203. </configuration>
  204. </plugin>
  205. <plugin>
  206. <groupId>org.apache.maven.plugins</groupId>
  207. <artifactId>maven-resources-plugin</artifactId>
  208. <version>2.4.3</version>
  209. </plugin>
  210. </plugins>
  211. </build>
  212. </project>