pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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</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/com.dorkbox/SystemTray -->
  39. <dependency>
  40. <groupId>com.dorkbox</groupId>
  41. <artifactId>SystemTray</artifactId>
  42. <version>3.11</version>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/org.json/json -->
  45. <dependency>
  46. <groupId>org.json</groupId>
  47. <artifactId>json</artifactId>
  48. <version>20171018</version>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-dependency-plugin</artifactId>
  56. <executions>
  57. <execution>
  58. <phase>package</phase>
  59. <goals>
  60. <goal>copy-dependencies</goal>
  61. </goals>
  62. <configuration>
  63. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  64. </configuration>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>