pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.components</groupId>
  6. <artifactId>ibps-component-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-component-httpclient</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.persist</groupId>
  17. <artifactId>ibps-persist-common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>commons-httpclient</groupId>
  21. <artifactId>commons-httpclient</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.httpcomponents</groupId>
  25. <artifactId>httpclient</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.httpcomponents</groupId>
  29. <artifactId>fluent-hc</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpmime</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.google.guava</groupId>
  37. <artifactId>guava</artifactId>
  38. </dependency>
  39. <!--
  40. <dependency>
  41. <groupId>com.squareup.retrofit2</groupId>
  42. <artifactId>retrofit</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.squareup.okhttp3</groupId>
  46. <artifactId>okhttp</artifactId>
  47. </dependency>
  48. -->
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <version>3.3</version>
  60. <configuration>
  61. <source>1.8</source>
  62. <target>1.8</target>
  63. <encoding>UTF-8</encoding>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>