pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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.3.5.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>thyyxxk</groupId>
  12. <artifactId>wxservice-server</artifactId>
  13. <version>12.2.3</version>
  14. <name>wxservice-server</name>
  15. <description>server for wxservice-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>com.baomidou</groupId>
  26. <artifactId>mybatis-plus-boot-starter</artifactId>
  27. <version>3.4.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-validation</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-devtools</artifactId>
  36. <scope>runtime</scope>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-jdbc</artifactId>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  44. <dependency>
  45. <groupId>com.microsoft.sqlserver</groupId>
  46. <artifactId>mssql-jdbc</artifactId>
  47. <version>8.2.2.jre8</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid-spring-boot-starter</artifactId>
  52. <version>1.2.20</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>1.2.59</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.dom4j</groupId>
  66. <artifactId>dom4j</artifactId>
  67. <version>2.1.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>commons-httpclient</groupId>
  71. <artifactId>commons-httpclient</artifactId>
  72. <version>3.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>cn.hutool</groupId>
  76. <artifactId>hutool-all</artifactId>
  77. <version>5.8.24</version>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
  80. <dependency>
  81. <groupId>org.aspectj</groupId>
  82. <artifactId>aspectjweaver</artifactId>
  83. <version>1.9.5</version>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
  86. <dependency>
  87. <groupId>org.aspectj</groupId>
  88. <artifactId>aspectjrt</artifactId>
  89. <version>1.9.5</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.github.wechatpay-apiv3</groupId>
  93. <artifactId>wechatpay-java</artifactId>
  94. <version>0.2.12</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.baidu.aip</groupId>
  98. <artifactId>java-sdk</artifactId>
  99. <version>4.15.3</version>
  100. <exclusions>
  101. <exclusion>
  102. <groupId>org.slf4j</groupId>
  103. <artifactId>slf4j-simple</artifactId>
  104. </exclusion>
  105. </exclusions>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-test</artifactId>
  110. <scope>test</scope>
  111. <exclusions>
  112. <exclusion>
  113. <groupId>org.junit.vintage</groupId>
  114. <artifactId>junit-vintage-engine</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  119. <dependency>
  120. <groupId>com.itextpdf</groupId>
  121. <artifactId>itextpdf</artifactId>
  122. <version>5.5.13.3</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
  125. <dependency>
  126. <groupId>com.itextpdf</groupId>
  127. <artifactId>itext-asian</artifactId>
  128. <version>5.2.0</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>commons-codec</groupId>
  132. <artifactId>commons-codec</artifactId>
  133. <version>1.15</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  136. <dependency>
  137. <groupId>org.bouncycastle</groupId>
  138. <artifactId>bcprov-jdk15on</artifactId>
  139. <version>1.70</version>
  140. </dependency>
  141. <!-- spring-boot-actuator依赖,监控系统健康情况的工具 -->
  142. <dependency>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-starter-actuator</artifactId>
  145. </dependency>
  146. <!-- prometheus依赖 -->
  147. <dependency>
  148. <groupId>io.micrometer</groupId>
  149. <artifactId>micrometer-registry-prometheus</artifactId>
  150. <version>1.6.12</version>
  151. </dependency>
  152. <!--micrometer核心包, 按需引入, 使用Meter注解或手动埋点时需要-->
  153. <dependency>
  154. <groupId>io.micrometer</groupId>
  155. <artifactId>micrometer-core</artifactId>
  156. <version>1.6.12</version>
  157. </dependency>
  158. <!--micrometer获取JVM相关信息, 并展示在Grafana上, 按需引入-->
  159. <dependency>
  160. <groupId>io.github.mweirauch</groupId>
  161. <artifactId>micrometer-jvm-extras</artifactId>
  162. <version>0.2.2</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>net.logstash.logback</groupId>
  166. <artifactId>logstash-logback-encoder</artifactId>
  167. <version>7.0.1</version>
  168. </dependency>
  169. </dependencies>
  170. <build>
  171. <plugins>
  172. <plugin>
  173. <groupId>org.springframework.boot</groupId>
  174. <artifactId>spring-boot-maven-plugin</artifactId>
  175. </plugin>
  176. </plugins>
  177. </build>
  178. </project>