Added war stuff
[dynamic-remote.git] / remote-war / pom.xml
blob26f48fc3f9feed9416772de5119b437eedd5b572
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>test.remote</groupId>
5         <artifactId>remote-war</artifactId>
6         <packaging>war</packaging>
7         <version>0.0.1-SNAPSHOT</version>
8         <name>remote-war</name>
9         <url>http://maven.apache.org</url>
10         <properties>
11                 <spring.version>3.0.5.RELEASE</spring.version>
12                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13         </properties>
14         <dependencies>
15                 <dependency>
16                         <groupId>test.remote</groupId>
17                         <artifactId>remote-server</artifactId>
18                         <version>0.0.1-SNAPSHOT</version>
19                 </dependency>
20                 <dependency>
21                         <groupId>org.springframework</groupId>
22                         <artifactId>spring-web</artifactId>
23                         <version>${spring.version}</version>
24                         <exclusions>
25                                 <exclusion>
26                                         <groupId>commons-logging</groupId>
27                                         <artifactId>commons-logging</artifactId>
28                                 </exclusion>
29                         </exclusions>
30                 </dependency>
31                 <dependency>
32                         <groupId>javax.servlet</groupId>
33                         <artifactId>servlet-api</artifactId>
34                         <version>2.5</version>
35                         <scope>provided</scope>
36                 </dependency>
37         </dependencies>
38         <build>
39                 <finalName>remote-war</finalName>
40         </build>
41 </project>