diff options
-rw-r--r-- | pom.xml | 21 |
1 files changed, 16 insertions, 5 deletions
@@ -4,7 +4,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.traccar</groupId> <artifactId>traccar</artifactId> - <version>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <name>traccar</name> <url>https://www.traccar.org</url> @@ -49,7 +49,7 @@ <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> - <version>3.10.3.Final</version> + <version>3.10.4.Final</version> </dependency> <dependency> <groupId>com.ning</groupId> @@ -66,10 +66,21 @@ <artifactId>javax.json</artifactId> <version>1.0.4</version> </dependency> + + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + <version>9.2.13.v20150730</version> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlet</artifactId> + <version>9.2.13.v20150730</version> + </dependency> <dependency> - <groupId>org.eclipse.jetty.aggregate</groupId> - <artifactId>jetty-all</artifactId> - <version>9.2.11.v20150529</version> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-webapp</artifactId> + <version>9.2.13.v20150730</version> </dependency> </dependencies> |