aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorVitaly Litvak <vitavaque@gmail.com>2015-08-27 08:14:02 +0300
committerVitaly Litvak <vitavaque@gmail.com>2015-08-27 08:14:02 +0300
commit4750fe38f60024053d7ad27c97c0851790b188bc (patch)
treea7e24dedb5d8a681a1fdd3662dc43ca96a3ddc74 /pom.xml
parent2e9842ebfa6d8b4d053d66c437a11190a0f49e6e (diff)
downloadtrackermap-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.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 86c703bec..31ba5609f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>