pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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>11.1</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>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-websocket</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus-boot-starter</artifactId>
  31. <version>3.4.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-devtools</artifactId>
  40. <scope>runtime</scope>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-jdbc</artifactId>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  48. <dependency>
  49. <groupId>com.microsoft.sqlserver</groupId>
  50. <artifactId>mssql-jdbc</artifactId>
  51. <version>8.2.2.jre8</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
  54. <dependency>
  55. <groupId>com.zaxxer</groupId>
  56. <artifactId>HikariCP</artifactId>
  57. <version>3.3.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <artifactId>lombok</artifactId>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>fastjson</artifactId>
  67. <version>1.2.59</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.dom4j</groupId>
  71. <artifactId>dom4j</artifactId>
  72. <version>2.1.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-httpclient</groupId>
  76. <artifactId>commons-httpclient</artifactId>
  77. <version>3.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.github.wechatpay-apiv3</groupId>
  81. <artifactId>wechatpay-apache-httpclient</artifactId>
  82. <version>0.2.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.retry</groupId>
  86. <artifactId>spring-retry</artifactId>
  87. <version>1.2.5.RELEASE</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
  90. <dependency>
  91. <groupId>org.aspectj</groupId>
  92. <artifactId>aspectjweaver</artifactId>
  93. <version>1.9.5</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
  96. <dependency>
  97. <groupId>org.aspectj</groupId>
  98. <artifactId>aspectjrt</artifactId>
  99. <version>1.9.5</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.baidu.aip</groupId>
  103. <artifactId>java-sdk</artifactId>
  104. <version>4.15.3</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>org.slf4j</groupId>
  108. <artifactId>slf4j-simple</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-test</artifactId>
  115. <scope>test</scope>
  116. <exclusions>
  117. <exclusion>
  118. <groupId>org.junit.vintage</groupId>
  119. <artifactId>junit-vintage-engine</artifactId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  124. <dependency>
  125. <groupId>com.itextpdf</groupId>
  126. <artifactId>itextpdf</artifactId>
  127. <version>5.5.13.3</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
  130. <dependency>
  131. <groupId>com.itextpdf</groupId>
  132. <artifactId>itext-asian</artifactId>
  133. <version>5.2.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-codec</groupId>
  137. <artifactId>commons-codec</artifactId>
  138. <version>1.15</version>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  141. <dependency>
  142. <groupId>org.bouncycastle</groupId>
  143. <artifactId>bcprov-jdk15on</artifactId>
  144. <version>1.70</version>
  145. </dependency>
  146. </dependencies>
  147. <build>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-maven-plugin</artifactId>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. </project>