|
|
@@ -8,6 +8,9 @@
|
|
8
|
8
|
<artifactId>tracking</artifactId>
|
|
9
|
9
|
<version>1.2-SNAPSHOT</version>
|
|
10
|
10
|
</parent>
|
|
|
11
|
+ <properties>
|
|
|
12
|
+ <jetty.port>8081</jetty.port>
|
|
|
13
|
+ </properties>
|
|
11
|
14
|
<packaging>war</packaging>
|
|
12
|
15
|
<name>Tracking context: Booking UI</name>
|
|
13
|
16
|
<version>${project.parent.version}</version>
|
|
|
@@ -46,20 +49,17 @@
|
|
46
|
49
|
<groupId>org.springframework</groupId>
|
|
47
|
50
|
<artifactId>spring-test</artifactId>
|
|
48
|
51
|
</dependency>
|
|
|
52
|
+ <dependency>
|
|
|
53
|
+ <groupId>org.codehaus.jettison</groupId>
|
|
|
54
|
+ <artifactId>jettison</artifactId>
|
|
|
55
|
+ <version>1.2</version>
|
|
|
56
|
+ </dependency>
|
|
49
|
57
|
</dependencies>
|
|
50
|
58
|
<build>
|
|
51
|
59
|
<plugins>
|
|
52
|
60
|
<plugin>
|
|
53
|
61
|
<groupId>org.mortbay.jetty</groupId>
|
|
54
|
62
|
<artifactId>maven-jetty-plugin</artifactId>
|
|
55
|
|
- <configuration>
|
|
56
|
|
- <systemProperties>
|
|
57
|
|
- <systemProperty>
|
|
58
|
|
- <name>jetty.port</name>
|
|
59
|
|
- <value>8081</value>
|
|
60
|
|
- </systemProperty>
|
|
61
|
|
- </systemProperties>
|
|
62
|
|
- </configuration>
|
|
63
|
63
|
</plugin>
|
|
64
|
64
|
</plugins>
|
|
65
|
65
|
</build>
|