Project

General

Profile

Download (3.48 KB) Statistics
| Branch: | Tag: | Revision:
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.1</version>
11
	</parent>
12
	
13
  <modelVersion>4.0.0</modelVersion>
14
  <artifactId>cdmlib-remote</artifactId>
15
  <packaging>war</packaging>
16
  <name>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>net.sf.json-lib</groupId>
50
      <artifactId>json-lib</artifactId>
51
      <version>2.2.1</version>
52
      <classifier>jdk15</classifier>   
53
    </dependency>
54

    
55

    
56
		<!-- XmlView -->
57
		<dependency>
58
			<groupId>xstream</groupId>
59
			<artifactId>xstream</artifactId>
60
		</dependency>
61
		<dependency>
62
			<groupId>xpp3</groupId>
63
			<artifactId>xpp3</artifactId>
64
		</dependency>
65

    
66
		<!-- JSP TAG LIBS -->
67
		<dependency>
68
			<groupId>taglibs</groupId>
69
			<artifactId>standard</artifactId>
70
			<version>1.1.2</version>
71
		</dependency>
72
		<dependency>
73
			<groupId>taglibs</groupId>
74
			<artifactId>x</artifactId>
75
			<version>1.1.2</version>
76
			<type>tld</type>
77
		</dependency>		
78
	</dependencies>
79

    
80
	<build>
81
		<finalName>cdmserver</finalName>
82
		<plugins>
83
			<plugin><!--use mvn tomcat:deploy -->
84
				<groupId>org.codehaus.mojo</groupId>
85
				<artifactId>tomcat-maven-plugin</artifactId>
86
				<configuration>
87
					<server>tomcat-edit</server>
88
					<url>http://search.biocase.org:8080/manager</url>
89
					<!-- 					  
90
						<server>tomcat-local</server>
91
					-->
92
				</configuration>
93
			</plugin>
94

    
95
			<plugin><!--use mvn jetty:run -->
96
				<groupId>org.mortbay.jetty</groupId>
97
				<artifactId>maven-jetty-plugin</artifactId>
98
				<configuration>
99
					<!-- Configure the webapp -->
100
					<contextPath>/cdmserver</contextPath>
101
					<!-- configure the container                 -->
102
					<scanIntervalSeconds>0</scanIntervalSeconds>
103
					<connectors>
104
						<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
105
							<port>8080</port>
106
							<maxIdleTime>60000</maxIdleTime>
107
						</connector>
108
					</connectors>
109
					<requestLog implementation="org.mortbay.jetty.NCSARequestLog">
110
						<filename>target/request.log</filename>
111
						<retainDays>30</retainDays>
112
						<append>true</append>
113
						<extended>false</extended>
114
						<logTimeZone>GMT</logTimeZone>
115
					</requestLog>
116
				</configuration>
117
			</plugin>
118
		</plugins>
119
	</build>
120
	
121
</project>
122

    
(3-3/3)