|
@@ -1,55 +1,74 @@
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
- <groupId>org.robert</groupId>
|
|
|
- <artifactId>printers-tray</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
- <packaging>jar</packaging>
|
|
|
+ <groupId>org.robert</groupId>
|
|
|
+ <artifactId>printers-tray</artifactId>
|
|
|
+ <version>0.0.1</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
|
- <name>printer-tray</name>
|
|
|
- <url>http://maven.apache.org</url>
|
|
|
+ <name>printer-tray</name>
|
|
|
+ <url>http://maven.apache.org</url>
|
|
|
|
|
|
- <properties>
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- </properties>
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>3.8.1</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.eclipse.jetty</groupId>
|
|
|
- <artifactId>jetty-server</artifactId>
|
|
|
- <version>9.4.7.v20170914</version>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-server -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
- <artifactId>websocket-server</artifactId>
|
|
|
- <version>9.4.7.v20170914</version>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
|
|
- <dependency>
|
|
|
- <groupId>commons-io</groupId>
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
- <version>2.5</version>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/com.dorkbox/SystemTray -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.dorkbox</groupId>
|
|
|
- <artifactId>SystemTray</artifactId>
|
|
|
- <version>3.11</version>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/org.json/json -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.json</groupId>
|
|
|
- <artifactId>json</artifactId>
|
|
|
- <version>20171018</version>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>3.8.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-server</artifactId>
|
|
|
+ <version>9.4.7.v20170914</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-server -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
+ <artifactId>websocket-server</artifactId>
|
|
|
+ <version>9.4.7.v20170914</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.5</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.dorkbox/SystemTray -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.dorkbox</groupId>
|
|
|
+ <artifactId>SystemTray</artifactId>
|
|
|
+ <version>3.11</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.json/json -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.json</groupId>
|
|
|
+ <artifactId>json</artifactId>
|
|
|
+ <version>20171018</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>copy-dependencies</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
</project>
|