75465311e5a5dc25593833471839dba323b66ad9
[fix-swf] / pom.xml
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>de.juplo</groupId>
5   <artifactId>fix-swf</artifactId>
6   <packaging>war</packaging>
7   <version>1.0</version>
8   <name>fix-swf</name>
9   <url>http://juplo.de/fix-swf</url>
10   <properties>
11     <commons-fileupload.version>1.2.2</commons-fileupload.version>
12     <commons-lang.version>2.6</commons-lang.version>
13     <servlet-api.version>2.5</servlet-api.version>
14   </properties>
15   <dependencies>
16     <dependency>
17       <groupId>commons-fileupload</groupId>
18       <artifactId>commons-fileupload</artifactId>
19       <version>${commons-fileupload.version}</version>
20     </dependency>
21     <dependency>
22       <groupId>commons-lang</groupId>
23       <artifactId>commons-lang</artifactId>
24       <version>${commons-lang.version}</version>
25     </dependency>
26     <dependency>
27       <groupId>javax.servlet</groupId>
28       <artifactId>servlet-api</artifactId>
29       <version>${servlet-api.version}</version>
30       <scope>provided</scope>
31     </dependency>
32   </dependencies>
33   <build>
34     <finalName>fix-swf</finalName>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.maven.plugins</groupId>
38         <artifactId>maven-compiler-plugin</artifactId>
39         <configuration>
40           <source>1.6</source>
41           <target>1.6</target>
42           <encoding>utf8</encoding>
43           <showWarnings>true</showWarnings>
44         </configuration>
45       </plugin>
46       <plugin>
47         <groupId>org.mortbay.jetty</groupId>
48         <artifactId>jetty-maven-plugin</artifactId>
49       </plugin>
50       <plugin>
51         <groupId>org.codehaus.mojo</groupId>
52         <artifactId>tomcat-maven-plugin</artifactId>
53         <version>1.1</version>
54         <configuration>
55           <path>/</path>
56           <uriEncoding>UTF-8</uriEncoding>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61 </project>