build a terminal-based "twitter" client. Use REST API to post and receive messages.

pom.xml 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <groupId>com.zipcoder.ZipChat</groupId>
  7. <artifactId>YouAreEll</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>Client</module>
  12. </modules>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.mashape.unirest</groupId>
  16. <artifactId>unirest-java</artifactId>
  17. <version>1.4.9</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.apache.httpcomponents</groupId>
  21. <artifactId>httpclient</artifactId>
  22. <version>4.3.6</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.httpcomponents</groupId>
  26. <artifactId>httpasyncclient</artifactId>
  27. <version>4.0.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.httpcomponents</groupId>
  31. <artifactId>httpmime</artifactId>
  32. <version>4.3.6</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.json</groupId>
  36. <artifactId>json</artifactId>
  37. <version>20140107</version>
  38. </dependency>
  39. </dependencies>
  40. </project>