Developer-Connection korrigiert
[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
4   <modelVersion>4.0.0</modelVersion>
5
6   <groupId>de.juplo</groupId>
7   <artifactId>fix-swf</artifactId>
8   <name>Juplo - fix-swf</name>
9   <version>1.0</version>
10   <packaging>war</packaging>
11   <url>http://www.juplo.de/fix-swf</url>
12
13   <prerequisites>
14     <maven>2.0.6</maven>
15   </prerequisites>
16
17   <scm>
18     <connection>scm:git:http://juplo.de/git/fix-swf</connection>
19     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/fix-swf</developerConnection>
20     <url>http://juplo.de/gitweb/?p=fix-swf;a=summary</url>
21   </scm>
22
23   <developers>
24     <developer>
25       <id>kai</id>
26       <name>Kai Moritz</name>
27       <email>kai@juplo.de</email>
28     </developer>
29   </developers>
30
31   <properties>
32     <!-- Zeichensatz -->
33     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34     <!-- Verwendete Versionen -->
35     <commons-fileupload.version>1.2.2</commons-fileupload.version>
36     <commons-lang.version>2.6</commons-lang.version>
37     <servlet-api.version>2.5</servlet-api.version>
38   </properties>
39
40   <dependencies>
41     <dependency>
42       <groupId>commons-fileupload</groupId>
43       <artifactId>commons-fileupload</artifactId>
44       <version>${commons-fileupload.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>commons-lang</groupId>
48       <artifactId>commons-lang</artifactId>
49       <version>${commons-lang.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>javax.servlet</groupId>
53       <artifactId>servlet-api</artifactId>
54       <version>${servlet-api.version}</version>
55       <scope>provided</scope>
56     </dependency>
57   </dependencies>
58
59   <distributionManagement>
60     <repository>
61       <id>juplo.internal</id>
62       <name>Internal Release Repository</name>
63       <url>http://juplo.de/archiva/repository/internal/</url>
64     </repository>
65     <snapshotRepository>
66       <id>juplo.snapshots</id>
67       <name>Internal Snapshot Repository</name>
68       <url>http://juplo.de/archiva/repository/snapshots/</url>
69     </snapshotRepository>
70   </distributionManagement>
71
72   <build>
73     <finalName>fix-swf</finalName>
74     <plugins>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-compiler-plugin</artifactId>
78         <configuration>
79           <source>1.6</source>
80           <target>1.6</target>
81           <encoding>utf8</encoding>
82           <showWarnings>true</showWarnings>
83         </configuration>
84       </plugin>
85       <plugin>
86         <groupId>org.apache.maven.plugins</groupId>
87         <artifactId>maven-source-plugin</artifactId>
88         <executions>
89           <execution>
90             <id>attach-sources</id>
91             <phase>verify</phase>
92             <goals>
93               <goal>jar</goal>
94             </goals>
95           </execution>
96         </executions>
97       </plugin>
98       <plugin>
99         <groupId>org.mortbay.jetty</groupId>
100         <artifactId>jetty-maven-plugin</artifactId>
101       </plugin>
102       <plugin>
103         <groupId>org.codehaus.mojo</groupId>
104         <artifactId>tomcat-maven-plugin</artifactId>
105         <version>1.1</version>
106         <configuration>
107           <path>/</path>
108           <uriEncoding>UTF-8</uriEncoding>
109         </configuration>
110       </plugin>
111     </plugins>
112   </build>
113
114   <reporting>
115     <plugins>
116       <plugin>
117         <artifactId>maven-changes-plugin</artifactId>
118       </plugin>
119       <plugin>
120         <artifactId>maven-javadoc-plugin</artifactId>
121       </plugin>
122       <plugin>
123         <artifactId>maven-jxr-plugin</artifactId>
124       </plugin>
125       <plugin>
126         <artifactId>maven-surefire-report-plugin</artifactId>
127       </plugin>
128       <plugin>
129         <artifactId>maven-scm-plugin</artifactId>
130         <configuration>
131           <goals>install</goals>
132         </configuration>
133       </plugin>
134     </plugins>
135   </reporting>
136
137 </project>