1: <project>
2: <modelVersion>4.0.0</modelVersion>
3: <groupId>com.aver</groupId>
4: <artifactId>echo</artifactId>
5: <packaging>war</packaging>
6: <version>1.0-SNAPSHOT</version>
7: <name>CXF Echo Service</name>
8: <dependencies>
9: <dependency>
10: <groupId>org.springframework</groupId>
11: <artifactId>spring</artifactId>
12: <version>2.5.6</version>
13: </dependency>
14: <dependency>
15: <groupId>org.apache.cxf</groupId>
16: <artifactId>cxf-rt-frontend-jaxws</artifactId>
17: <version>2.2.3</version>
18: </dependency>
19: <dependency>
20: <groupId>org.apache.cxf</groupId>
21: <artifactId>cxf-rt-transports-http</artifactId>
22: <version>2.2.3</version>
23: </dependency>
24: <dependency>
25: <groupId>junit</groupId>
26: <artifactId>junit</artifactId>
27: <version>4.7</version>
28: <scope>test</scope>
29: </dependency>
30: <dependency>
31: <groupId>log4j</groupId>
32: <artifactId>log4j</artifactId>
33: <version>1.2.14</version>
34: </dependency>
35: </dependencies>
36: <build>
37: <plugins>
38: <plugin>
39: <groupId>org.mortbay.jetty</groupId>
40: <artifactId>maven-jetty-plugin</artifactId>
41: <configuration>
42: <contextPath>/echoservice</contextPath>
43: <connectors>
44: <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
45: <port>9090</port>
46: <maxIdleTime>60000</maxIdleTime>
47: </connector>
48: </connectors>
49: </configuration>
50: </plugin>
51: <plugin>
52: <groupId>org.apache.maven.plugins</groupId>
53: <artifactId>maven-compiler-plugin</artifactId>
54: <configuration>
55: <source>1.5</source>
56: <target>1.5</target>
57: </configuration>
58: </plugin>
59: </plugins>
60: </build>
61: </project>