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

pom.xml 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  15. <dependency>
  16. <groupId>com.google.code.gson</groupId>
  17. <artifactId>gson</artifactId>
  18. <version>2.8.0</version>
  19. </dependency>
  20. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
  21. <dependency>
  22. <groupId>com.fasterxml.jackson.dataformat</groupId>
  23. <artifactId>jackson-dataformat-xml</artifactId>
  24. <version>2.9.5</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.mashape.unirest</groupId>
  28. <artifactId>unirest-java</artifactId>
  29. <version>1.4.9</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpclient</artifactId>
  34. <version>4.3.6</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.httpcomponents</groupId>
  38. <artifactId>httpasyncclient</artifactId>
  39. <version>4.0.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.httpcomponents</groupId>
  43. <artifactId>httpmime</artifactId>
  44. <version>4.3.6</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.json</groupId>
  48. <artifactId>json</artifactId>
  49. <version>20140107</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <version>4.11</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-io</groupId>
  59. <artifactId>commons-io</artifactId>
  60. <version>2.4</version>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-databind</artifactId>
  66. <version>2.8.6</version>
  67. </dependency>
  68. </dependencies>
  69. </project>