(no commit message)
[cdmlib.git] / cdmlib-remote / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <!--
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6 -->
7 <parent>
8 <groupId>eu.etaxonomy</groupId>
9 <artifactId>cdmlib-parent</artifactId>
10 <version>1.1.0-SNAPSHOT</version>
11 </parent>
12
13 <modelVersion>4.0.0</modelVersion>
14 <artifactId>cdmlib-remote</artifactId>
15 <packaging>war</packaging>
16 <name>EDIT CDM Community Server</name>
17 <description>The EDIT CDM Community Server allows remote access to the common data model via webservices in the wider sense</description>
18 <scm>
19 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/</connection>
20 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/</developerConnection>
21 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-remote/</url>
22 </scm>
23
24 <dependencies>
25 <dependency>
26 <groupId>eu.etaxonomy</groupId>
27 <artifactId>cdmlib-model</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>eu.etaxonomy</groupId>
31 <artifactId>cdmlib-persistence</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>javax.servlet</groupId>
35 <artifactId>servlet-api</artifactId>
36 <scope>provided</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework</groupId>
40 <artifactId>spring-webmvc</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.springframework</groupId>
44 <artifactId>spring-web</artifactId>
45 </dependency>
46
47 <!-- JsonView -->
48 <dependency>
49 <groupId>eu.etaxonomy</groupId>
50 <artifactId>spring-json</artifactId>
51 </dependency>
52
53 <!-- XmlView -->
54 <dependency>
55 <groupId>xstream</groupId>
56 <artifactId>xstream</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>xpp3</groupId>
60 <artifactId>xpp3</artifactId>
61 </dependency>
62
63 <!-- JSP TAG LIBS -->
64 <dependency>
65 <groupId>taglibs</groupId>
66 <artifactId>standard</artifactId>
67 <version>1.1.2</version>
68 </dependency>
69 <dependency>
70 <groupId>taglibs</groupId>
71 <artifactId>x</artifactId>
72 <version>1.1.2</version>
73 <type>tld</type>
74 </dependency>
75 </dependencies>
76
77 <build>
78 <finalName>cdmserver</finalName>
79 <plugins>
80 <plugin><!--use mvn tomcat:deploy -->
81 <groupId>org.codehaus.mojo</groupId>
82 <artifactId>tomcat-maven-plugin</artifactId>
83 <configuration>
84 <server>tomcat-local</server>
85 <!--
86 <server>tomcat-edit</server>
87 <url>http://search.biocase.org:8080/manager</url>
88 -->
89 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.mortbay.jetty</groupId>
93 <artifactId>maven-jetty-plugin</artifactId>
94 <dependencies>
95 <dependency>
96 <groupId>org.apache.geronimo.specs</groupId>
97 <artifactId>geronimo-j2ee_1.4_spec</artifactId>
98 <version>1.1</version>
99 </dependency>
100 </dependencies>
101 <configuration>
102 <connectors>
103 <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
104 <port>8080</port>
105 <maxIdleTime>3600000</maxIdleTime>
106 </connector>
107 </connectors>
108 <scanIntervalSeconds>5</scanIntervalSeconds>
109 </configuration>
110 </plugin>
111
112 </plugins>
113 </build>
114
115 </project>
116