pom.xml 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>YouAreEll</artifactId>
  7. <groupId>com.zipcoder.ZipChat</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>Client</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.mashape.unirest</groupId>
  15. <artifactId>unirest-java</artifactId>
  16. <version>1.4.9</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.httpcomponents</groupId>
  20. <artifactId>httpclient</artifactId>
  21. <version>4.3.6</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.httpcomponents</groupId>
  25. <artifactId>httpasyncclient</artifactId>
  26. <version>4.0.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.httpcomponents</groupId>
  30. <artifactId>httpmime</artifactId>
  31. <version>4.3.6</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.json</groupId>
  35. <artifactId>json</artifactId>
  36. <version>20140107</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <version>4.11</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-io</groupId>
  46. <artifactId>commons-io</artifactId>
  47. <version>2.4</version>
  48. <scope>test</scope>
  49. </dependency>
  50. </dependencies>
  51. </project>