diff options
author | Vitaly Litvak <vitavaque@gmail.com> | 2015-08-27 08:14:02 +0300 |
---|---|---|
committer | Vitaly Litvak <vitavaque@gmail.com> | 2015-08-27 08:14:02 +0300 |
commit | 4750fe38f60024053d7ad27c97c0851790b188bc (patch) | |
tree | a7e24dedb5d8a681a1fdd3662dc43ca96a3ddc74 /pom.xml | |
parent | 2e9842ebfa6d8b4d053d66c437a11190a0f49e6e (diff) | |
download | trackermap-server-4750fe38f60024053d7ad27c97c0851790b188bc.tar.gz trackermap-server-4750fe38f60024053d7ad27c97c0851790b188bc.tar.bz2 trackermap-server-4750fe38f60024053d7ad27c97c0851790b188bc.zip |
Moved jetty version to a property in maven pom.xml file
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -9,6 +9,10 @@ <name>traccar</name> <url>https://www.traccar.org</url> + <properties> + <jetty.version>9.2.13.v20150730</jetty.version> + </properties> + <dependencies> <dependency> <groupId>junit</groupId> @@ -71,22 +75,22 @@ <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> - <version>9.2.13.v20150730</version> + <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> - <version>9.2.13.v20150730</version> + <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> - <version>9.2.13.v20150730</version> + <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jndi</artifactId> - <version>9.2.13.v20150730</version> + <version>${jetty.version}</version> </dependency> </dependencies> |