pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.robert</groupId>
  5. <artifactId>printers-tray</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>printer-tray</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>junit</groupId>
  16. <artifactId>junit</artifactId>
  17. <version>3.8.1</version>
  18. <scope>test</scope>
  19. </dependency>
  20. <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
  21. <dependency>
  22. <groupId>org.eclipse.jetty</groupId>
  23. <artifactId>jetty-server</artifactId>
  24. <version>9.4.7.v20170914</version>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-server -->
  27. <dependency>
  28. <groupId>org.eclipse.jetty.websocket</groupId>
  29. <artifactId>websocket-server</artifactId>
  30. <version>9.4.7.v20170914</version>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  33. <dependency>
  34. <groupId>commons-io</groupId>
  35. <artifactId>commons-io</artifactId>
  36. <version>2.5</version>
  37. </dependency>
  38. <!-- https://mvnrepository.com/artifact/org.codehaus.jettison/jettison -->
  39. <dependency>
  40. <groupId>org.codehaus.jettison</groupId>
  41. <artifactId>jettison</artifactId>
  42. <version>1.3.8</version>
  43. </dependency>
  44. </dependencies>
  45. </project>