pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>tmd</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <name>demo</name>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>net.sf.json-lib</groupId>
  22. <artifactId>json-lib</artifactId>
  23. <version>2.4</version>
  24. <classifier>jdk15</classifier>
  25. </dependency>
  26. <dependency>
  27. <groupId>xom</groupId>
  28. <artifactId>xom</artifactId>
  29. <version>1.2.5</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-tomcat</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>javax.servlet-api</artifactId>
  43. <version>3.1.0</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-lang</groupId>
  48. <artifactId>commons-lang</artifactId>
  49. <version>2.6</version>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpcore</artifactId>
  55. <version>4.4.10</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.squareup.okhttp3</groupId>
  59. <artifactId>okhttp</artifactId>
  60. <version>4.0.0</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpclient</artifactId>
  66. <version>4.5.6</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-test</artifactId>
  71. <scope>test</scope>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>org.junit.vintage</groupId>
  75. <artifactId>junit-vintage-engine</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>junit</groupId>
  81. <artifactId>junit</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-test</artifactId>
  86. <version>5.2.6.RELEASE</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-test</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-test</artifactId>
  96. </dependency>
  97. <!-- Lombok -->
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alipay.mychainx</groupId>
  104. <artifactId>mychainx-sdk</artifactId>
  105. <version>0.10.2.12</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.bouncycastle</groupId>
  109. <artifactId>bcpkix-jdk15on</artifactId>
  110. <version>1.60</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>io.netty</groupId>
  114. <artifactId>netty-all</artifactId>
  115. <version>4.1.29.Final</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>io.netty</groupId>
  119. <artifactId>netty-tcnative-boringssl-static</artifactId>
  120. <version>2.0.17.Final</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.slf4j</groupId>
  124. <artifactId>slf4j-api</artifactId>
  125. <version>1.7.25</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-io</groupId>
  129. <artifactId>commons-io</artifactId>
  130. <version>2.6</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.alibaba</groupId>
  134. <artifactId>fastjson</artifactId>
  135. <version>1.2.60</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.google.guava</groupId>
  139. <artifactId>guava</artifactId>
  140. <version>20.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.commons</groupId>
  144. <artifactId>commons-collections4</artifactId>
  145. <version>4.2</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.commons</groupId>
  149. <artifactId>commons-lang3</artifactId>
  150. <version>3.5</version>
  151. </dependency>
  152. </dependencies>
  153. <repositories>
  154. <repository>
  155. <id>com.e-iceblue</id>
  156. <url>http://repo.e-iceblue.cn/repository/maven-public/</url>
  157. </repository>
  158. </repositories>
  159. <build>
  160. <plugins>
  161. <plugin>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-maven-plugin</artifactId>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>