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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <configuration>
  19. <source>8</source>
  20. <target>8</target>
  21. </configuration>
  22. </plugin>
  23. </plugins>
  24. </build>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.fasterxml.jackson.core</groupId>
  28. <artifactId>jackson-databind</artifactId>
  29. <version>2.8.6</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpclient</artifactId>
  34. <version>4.5.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.squareup.okhttp3</groupId>
  38. <artifactId>okhttp</artifactId>
  39. <version>3.10.0</version>
  40. </dependency>
  41. </dependencies>
  42. </project>