pom.xml 1.1KB

123456789101112131415161718192021222324252627282930313233
  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.fasterxml.jackson.core</groupId>
  16. <artifactId>jackson-core</artifactId>
  17. <version>2.9.4</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.squareup.okhttp3</groupId>
  21. <artifactId>okhttp</artifactId>
  22. <version>3.10.0</version>
  23. </dependency>
  24. <!--<dependency>-->
  25. <!--<groupId>org.apache.httpcomponents</groupId>-->
  26. <!--<artifactId>httpclient</artifactId>-->
  27. <!--<version>4.5.5</version>-->
  28. <!--</dependency>-->
  29. </dependencies>
  30. </project>