pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>nosum-support</artifactId>
  7. <groupId>cn.nosum</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>support-http</artifactId>
  12. <properties>
  13. <httpclient.version>4.5.13</httpclient.version>
  14. <okhttp3.version>4.5.0</okhttp3.version>
  15. <jodd.version>5.2.0</jodd.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.jodd</groupId>
  20. <artifactId>jodd-http</artifactId>
  21. <version>${jodd.version}</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.squareup.okhttp3</groupId>
  26. <artifactId>okhttp</artifactId>
  27. <version>${okhttp3.version}</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpclient</artifactId>
  33. <version>${httpclient.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpmime</artifactId>
  38. <version>${httpclient.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-lang3</artifactId>
  43. <version>3.10</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.slf4j</groupId>
  47. <artifactId>slf4j-api</artifactId>
  48. <version>1.7.30</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.fasterxml.jackson.core</groupId>
  56. <artifactId>jackson-annotations</artifactId>
  57. <scope>provided</scope>
  58. </dependency>
  59. </dependencies>
  60. </project>