Revert ""
[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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <!-- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" -->
4 <parent>
5 <groupId>eu.etaxonomy</groupId>
6 <artifactId>cdmlib-parent</artifactId>
7 <version>3.3.0-SNAPSHOT</version>
8 <relativePath>../pom.xml</relativePath>
9 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <artifactId>cdmlib-remote</artifactId>
13 <properties>
14 <!-- custom property to hold the patch version number shouldn't this be
15 set in the parent pom? -->
16 <project.patchversion>0</project.patchversion>
17 </properties>
18 <name>CDM Remote</name>
19 <description>The EDIT CDM Remote package allows remote access to
20 the common data model via webservices in the wider sense</description>
21 <!-- Revert this back to "war" before committing -->
22 <packaging>jar</packaging>
23 <scm>
24 <connection>
25 scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/
26 </connection>
27 <developerConnection>
28 scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/
29 </developerConnection>
30 <url>
31 http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-remote/
32 </url>
33 </scm>
34
35 <dependencies>
36 <dependency>
37 <groupId>eu.etaxonomy</groupId>
38 <artifactId>cdmlib-io</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>javax.servlet</groupId>
42 <artifactId>servlet-api</artifactId>
43 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.springframework</groupId>
47 <artifactId>org.springframework.web</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework</groupId>
51 <artifactId>spring-context-support</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.springframework</groupId>
55 <artifactId>org.springframework.web.servlet</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.springmodules</groupId>
59 <artifactId>spring-modules-cache</artifactId>
60 <version>0.7</version>
61 <exclusions>
62 <exclusion>
63 <groupId>org.springframework</groupId>
64 <artifactId>spring</artifactId>
65 </exclusion>
66 <exclusion>
67 <groupId>org.springframework</groupId>
68 <artifactId>spring-mock</artifactId>
69 </exclusion>
70 </exclusions>
71 </dependency>
72 <dependency>
73 <groupId>org.unitils</groupId>
74 <artifactId>unitils-core</artifactId>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.unitils</groupId>
79 <artifactId>unitils-database</artifactId>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.unitils</groupId>
84 <artifactId>unitils-dbmaintainer</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.unitils</groupId>
89 <artifactId>unitils-dbunit</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.unitils</groupId>
94 <artifactId>unitils-easymock</artifactId>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.unitils</groupId>
99 <artifactId>unitils-mock</artifactId>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.unitils</groupId>
104 <artifactId>unitils-inject</artifactId>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.unitils</groupId>
109 <artifactId>unitils-orm</artifactId>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.unitils</groupId>
114 <artifactId>unitils-spring</artifactId>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>xmlunit</groupId>
119 <artifactId>xmlunit</artifactId>
120 </dependency>
121 <dependency>
122 <groupId>org.easymock</groupId>
123 <artifactId>easymock</artifactId>
124 </dependency>
125
126 <dependency>
127 <groupId>com.ibm.lsid</groupId>
128 <artifactId>lsid-server</artifactId>
129 </dependency>
130 <dependency>
131 <groupId>com.ibm.lsid</groupId>
132 <artifactId>lsid-client</artifactId>
133 </dependency>
134
135 <dependency>
136 <groupId>org.springframework</groupId>
137 <artifactId>org.springframework.test</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>net.sf.dozer</groupId>
141 <artifactId>dozer</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.hibernate</groupId>
145 <artifactId>hibernate-cglib-repack</artifactId>
146 </dependency>
147 <dependency>
148 <groupId>org.hibernate</groupId>
149 <artifactId>hibernate-ehcache</artifactId>
150 </dependency>
151 <dependency>
152 <groupId>commons-io</groupId>
153 <artifactId>commons-io</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>net.sf.json-lib</groupId>
157 <artifactId>json-lib</artifactId>
158 <classifier>jdk15</classifier>
159 </dependency>
160 <dependency>
161 <groupId>org.springframework</groupId>
162 <artifactId>org.springframework.oxm</artifactId>
163 </dependency>
164
165 <!-- XmlView -->
166 <dependency>
167 <groupId>com.thoughtworks.xstream</groupId>
168 <artifactId>xstream</artifactId>
169 </dependency>
170 <dependency>
171 <groupId>xpp3</groupId>
172 <artifactId>xpp3</artifactId>
173 </dependency>
174 <dependency>
175 <groupId>stax</groupId>
176 <artifactId>stax</artifactId>
177 </dependency>
178
179 <!-- JsonView -->
180 <dependency>
181 <!-- for xml serialization (net.sf.json.xml.XMLSerializer) -->
182 <groupId>xom</groupId>
183 <artifactId>xom</artifactId>
184 </dependency>
185
186
187
188 <!-- Connection Pooling -->
189 <dependency>
190 <groupId>org.hibernate</groupId>
191 <artifactId>hibernate-c3p0</artifactId>
192 </dependency>
193
194 <!-- SQL Debugging -->
195 <dependency>
196 <groupId>p6spy</groupId>
197 <artifactId>p6spy</artifactId>
198 </dependency>
199 </dependencies>
200
201 <build>
202 <plugins>
203 <plugin>
204 <artifactId>maven-resources-plugin</artifactId>
205 <version>2.5</version>
206 <executions>
207 <execution>
208 <id>copy-resources</id>
209 <phase>validate</phase>
210 <goals>
211 <goal>copy-resources</goal>
212 </goals>
213 <configuration>
214 <outputDirectory>${project.build.outputDirectory}/eu/etaxonomy/cdm/doc/remote/apt</outputDirectory>
215 <resources>
216 <resource>
217 <directory>../src/site/apt/remote</directory>
218 <filtering>true</filtering>
219 </resource>
220 </resources>
221 </configuration>
222 </execution>
223 </executions>
224 </plugin>
225 </plugins>
226 </build>
227 </project>
228