hutool-http-5.8.35.pom 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>cn.hutool</groupId>
  9. <artifactId>hutool-parent</artifactId>
  10. <version>5.8.35</version>
  11. </parent>
  12. <artifactId>hutool-http</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool Http客户端</description>
  15. <properties>
  16. <Automatic-Module-Name>cn.hutool.http</Automatic-Module-Name>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.hutool</groupId>
  21. <artifactId>hutool-core</artifactId>
  22. <version>${project.parent.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-json</artifactId>
  27. <version>${project.parent.version}</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>javax.xml.soap</groupId>
  32. <artifactId>javax.xml.soap-api</artifactId>
  33. <version>1.4.0</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. </dependencies>
  37. </project>