pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.5.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.huimv</groupId>
  12. <artifactId>huimv-manage</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>huimv-manage</name>
  15. <description>Demo project for Spring Boot</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-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <!-- -->
  30. <dependency>
  31. <groupId>javax.activation</groupId>
  32. <artifactId>activation</artifactId>
  33. <version>1.1.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.axis</groupId>
  37. <artifactId>axis</artifactId>
  38. <version>1.4</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>axis</groupId>
  42. <artifactId>axis-jaxrpc</artifactId>
  43. <version>1.4</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>commons-discovery</groupId>
  47. <artifactId>commons-discovery</artifactId>
  48. <version>0.5</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>wsdl4j</groupId>
  52. <artifactId>wsdl4j</artifactId>
  53. <version>1.6.3</version>
  54. </dependency>
  55. <!-- jsonObject的jar包 -->
  56. <dependency>
  57. <groupId>commons-beanutils</groupId>
  58. <artifactId>commons-beanutils</artifactId>
  59. <version>1.9.3</version>
  60. </dependency>
  61. <!-- org.json.JSONObject需要的jar包-->
  62. <!-- <dependency>-->
  63. <!-- <groupId>org.json</groupId>-->
  64. <!-- <artifactId>json</artifactId>-->
  65. <!-- <version>20190722</version>-->
  66. <!-- </dependency>-->
  67. <dependency>
  68. <groupId>commons-io</groupId>
  69. <artifactId>commons-io</artifactId>
  70. <version>2.4</version>
  71. </dependency>
  72. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  73. <dependency>
  74. <groupId>commons-httpclient</groupId>
  75. <artifactId>commons-httpclient</artifactId>
  76. <version>3.1</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/javax.mail/mail -->
  79. <dependency>
  80. <groupId>javax.mail</groupId>
  81. <artifactId>mail</artifactId>
  82. <version>1.4.7</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-httpclient</groupId>
  86. <artifactId>commons-httpclient</artifactId>
  87. <version>3.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.ws.commons.axiom</groupId>
  91. <artifactId>axiom-api</artifactId>
  92. <version>1.2.4</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.ws.commons.axiom</groupId>
  96. <artifactId>axiom-impl</artifactId>
  97. <version>1.2.4</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>wsdl4j</groupId>
  101. <artifactId>wsdl4j</artifactId>
  102. <version>1.6.3</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.ws.xmlschema</groupId>
  106. <artifactId>xmlschema-core</artifactId>
  107. <version>2.2.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. <artifactId>httpclient</artifactId>
  112. <version>4.5</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.httpcomponents</groupId>
  116. <artifactId>httpcore</artifactId>
  117. <version>4.4.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.httpcomponents</groupId>
  121. <artifactId>httpcore</artifactId>
  122. <version>4.4.1</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>commons-httpclient</groupId>
  126. <artifactId>commons-httpclient</artifactId>
  127. <version>3.1</version>
  128. </dependency>
  129. <!--解析xml报文-->
  130. <dependency>
  131. <groupId>dom4j</groupId>
  132. <artifactId>dom4j</artifactId>
  133. <version>1.6.1</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>fastjson</artifactId>
  138. <version>1.2.73</version>
  139. </dependency>
  140. </dependencies>
  141. <build>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-maven-plugin</artifactId>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>