1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>shellutilities.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.fasterxml.jackson.core</groupId>
  16. <artifactId>jackson-databind</artifactId>
  17. <version>2.8.6</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  20. <dependency>
  21. <groupId>org.apache.httpcomponents</groupId>
  22. <artifactId>httpclient</artifactId>
  23. <version>4.5.6</version>
  24. </dependency>
  25. <!-- https://mvnrepository.com/artifact/org.json/json -->
  26. <dependency>
  27. <groupId>org.json</groupId>
  28. <artifactId>json</artifactId>
  29. <version>20180813</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.datatype</groupId>
  33. <artifactId>jackson-datatype-json-org</artifactId>
  34. <version>2.9.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.github.tomakehurst</groupId>
  38. <artifactId>wiremock</artifactId>
  39. <version>2.19.0</version>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>