pom.xml 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <modelVersion>4.0.0</modelVersion>
  6. <properties>
  7. <maven.compiler.source>1.8</maven.compiler.source>
  8. <maven.compiler.target>1.8</maven.compiler.target>
  9. </properties>
  10. <groupId>com.zipcoder.ZipChat</groupId>
  11. <artifactId>YouAreEll</artifactId>
  12. <packaging>pom</packaging>
  13. <version>1.0-SNAPSHOT</version>
  14. <modules>
  15. <module>Client</module>
  16. </modules>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.fasterxml.jackson.core</groupId>
  20. <artifactId>jackson-databind</artifactId>
  21. <version>2.9.7</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.mashape.unirest</groupId>
  25. <artifactId>unirest-java</artifactId>
  26. <version>1.4.9</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.httpcomponents</groupId>
  30. <artifactId>httpclient</artifactId>
  31. <version>4.3.6</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.httpcomponents</groupId>
  35. <artifactId>httpasyncclient</artifactId>
  36. <version>4.0.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpmime</artifactId>
  41. <version>4.3.6</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.json</groupId>
  45. <artifactId>json</artifactId>
  46. <version>20140107</version>
  47. </dependency>
  48. </dependencies>
  49. </project>