implement start number for PolytomousKeys #2327
[cdmlib.git] / cdmlib-remote-webapp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>cdmlib-parent</artifactId>
6 <groupId>eu.etaxonomy</groupId>
7 <version>3.2.2-SNAPSHOT</version>
8 <relativePath>../pom.xml</relativePath>
9 </parent>
10
11 <groupId>eu.etaxonomy</groupId>
12 <artifactId>cdmlib-remote-webapp</artifactId>
13 <name>CDM Remote Webapp</name>
14 <packaging>war</packaging>
15
16 <properties>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 </properties>
19
20 <scm>
21 <connection>
22 scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/
23 </connection>
24 <developerConnection>
25 scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/
26 </developerConnection>
27 <url>
28 http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-remote/
29 </url>
30 </scm>
31
32 <dependencies>
33 <dependency>
34 <groupId>eu.etaxonomy</groupId>
35 <artifactId>cdmlib-remote</artifactId>
36 </dependency>
37 <dependency>
38 <!-- TODO this is also offered by cdmlib-remote, can it be removed? What does provided mean? -->
39 <groupId>javax.servlet</groupId>
40 <artifactId>servlet-api</artifactId>
41 <scope>provided</scope>
42 </dependency>
43
44 <dependency>
45 <groupId>org.easymock</groupId>
46 <artifactId>easymock</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>xmlunit</groupId>
50 <artifactId>xmlunit</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>commons-io</groupId>
55 <artifactId>commons-io</artifactId>
56 </dependency>
57 <!-- JsonView -->
58 <dependency>
59 <!-- TODO can this be removed, it already exists in cdmlib-remote -->
60 <groupId>net.sf.json-lib</groupId>
61 <artifactId>json-lib</artifactId>
62 <classifier>jdk15</classifier>
63 </dependency>
64
65 <!-- Profiling -->
66 <dependency>
67 <groupId>com.yourkit</groupId>
68 <artifactId>yjp-controller-api-redist</artifactId>
69 <scope>test</scope>
70 </dependency>
71
72 </dependencies>
73
74 <build>
75 <!-- Configure the webapp -->
76 <finalName>cdmserver</finalName>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-war-plugin</artifactId>
81 <version>2.1-beta-1</version>
82 </plugin>
83 </plugins>
84 </build>
85 </project>