pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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>5.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. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-amqp</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-websocket</artifactId>
  31. </dependency>
  32. <!-- 肖蟾 使用mybatis-plus-->
  33. <dependency>
  34. <groupId>org.mybatis.spring.boot</groupId>
  35. <artifactId>mybatis-spring-boot-starter</artifactId>
  36. <version>2.1.4</version>
  37. </dependency>
  38. <!--肖蟾 代码生成器-->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-generator</artifactId>
  42. <version>3.4.0</version>
  43. </dependency>
  44. <!-- 数据库中的注释-->
  45. <dependency>
  46. <groupId>io.springfox</groupId>
  47. <artifactId>springfox-swagger2</artifactId>
  48. <version>2.10.5</version>
  49. </dependency>
  50. <!--肖蟾 模板引擎-->
  51. <dependency>
  52. <groupId>org.apache.velocity</groupId>
  53. <artifactId>velocity-engine-core</artifactId>
  54. <version>2.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.oracle.database.jdbc</groupId>
  58. <artifactId>ojdbc6</artifactId>
  59. <version>11.2.0.4</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-validation</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-devtools</artifactId>
  68. <scope>runtime</scope>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.microsoft.sqlserver</groupId>
  73. <artifactId>mssql-jdbc</artifactId>
  74. <version>7.4.1.jre8</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-test</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.amqp</groupId>
  88. <artifactId>spring-rabbit-test</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>net.sourceforge.jtds</groupId>
  93. <artifactId>jtds</artifactId>
  94. <version>1.3.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.auth0</groupId>
  98. <artifactId>java-jwt</artifactId>
  99. <version>3.4.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.alibaba</groupId>
  103. <artifactId>fastjson</artifactId>
  104. <version>1.2.60</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>dom4j</groupId>
  108. <artifactId>dom4j</artifactId>
  109. <version>1.6.1</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.dom4j</groupId>
  113. <artifactId>dom4j</artifactId>
  114. <version>2.1.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.cxf</groupId>
  118. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  119. <version>3.1.10</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.cxf</groupId>
  123. <artifactId>cxf-rt-transports-http</artifactId>
  124. <version>3.1.10</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-configuration-processor</artifactId>
  129. <optional>true</optional>
  130. </dependency>
  131. <dependency>
  132. <groupId>joda-time</groupId>
  133. <artifactId>joda-time</artifactId>
  134. <version>2.10.5</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.httpcomponents</groupId>
  138. <artifactId>httpcore</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.httpcomponents</groupId>
  142. <artifactId>httpclient</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.github.wechatpay-apiv3</groupId>
  146. <artifactId>wechatpay-apache-httpclient</artifactId>
  147. <version>0.2.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.hynnet</groupId>
  151. <artifactId>jacob</artifactId>
  152. <version>1.18</version>
  153. </dependency>
  154. </dependencies>
  155. <build>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-maven-plugin</artifactId>
  160. <configuration>
  161. <excludes>
  162. <exclude>
  163. <groupId>org.projectlombok</groupId>
  164. <artifactId>lombok</artifactId>
  165. </exclude>
  166. </excludes>
  167. </configuration>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-resources-plugin</artifactId>
  172. <version>2.4.3</version>
  173. </plugin>
  174. </plugins>
  175. </build>
  176. </project>