Project

General

Profile

Download (6.18 KB) Statistics
| Branch: | Tag: | Revision:
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>5.17.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
15
      be 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

    
24
  <dependencies>
25
    <dependency>
26
      <groupId>eu.etaxonomy</groupId>
27
      <artifactId>cdmlib-io</artifactId>
28
    </dependency>
29
    <dependency>
30
        <groupId>eu.etaxonomy</groupId>
31
        <artifactId>cdmlib-test</artifactId>
32
        <scope>test</scope>
33
        <version>${project.version}</version>
34
    </dependency>
35
    <dependency>
36
      <groupId>javax.servlet</groupId>
37
      <artifactId>javax.servlet-api</artifactId>
38
      <scope>provided</scope>
39
    </dependency>
40
    <dependency>
41
      <groupId>org.springframework</groupId>
42
      <artifactId>spring-web</artifactId>
43
    </dependency>
44
    <dependency>
45
      <groupId>org.springframework</groupId>
46
      <artifactId>spring-context-support</artifactId>
47
    </dependency>
48
    <dependency>
49
        <groupId>org.springframework</groupId>
50
        <artifactId>spring-webmvc</artifactId>
51
    </dependency>
52
    <dependency>
53
      <groupId>org.springmodules</groupId>
54
      <artifactId>spring-modules-cache</artifactId>
55
      <version>0.7</version>
56
      <exclusions>
57
        <exclusion>
58
          <groupId>org.springframework</groupId>
59
          <artifactId>spring</artifactId>
60
        </exclusion>
61
        <exclusion>
62
          <groupId>org.springframework</groupId>
63
          <artifactId>spring-mock</artifactId>
64
        </exclusion>
65
      </exclusions>
66
    </dependency>
67
    <dependency>
68
      <groupId>org.springframework.security</groupId>
69
      <artifactId>spring-security-core</artifactId>
70
    </dependency>
71
    <dependency>
72
      <groupId>org.springframework.security</groupId>
73
      <artifactId>spring-security-config</artifactId>
74
    </dependency>
75
    <dependency>
76
      <groupId>org.springframework.security</groupId>
77
      <artifactId>spring-security-web</artifactId>
78
    </dependency>
79
    <dependency>
80
      <groupId>org.springframework.security.oauth</groupId>
81
      <artifactId>spring-security-oauth2</artifactId>
82
    </dependency>
83
    <dependency>
84
      <groupId>xmlunit</groupId>
85
      <artifactId>xmlunit</artifactId>
86
    </dependency>
87

    
88
    <dependency>
89
      <groupId>com.ibm.lsid</groupId>
90
      <artifactId>lsid-server</artifactId>
91
    </dependency>
92
    <dependency>
93
      <groupId>com.ibm.lsid</groupId>
94
      <artifactId>lsid-client</artifactId>
95
    </dependency>
96
    <dependency>
97
      <groupId>net.sf.dozer</groupId>
98
      <artifactId>dozer</artifactId>
99
    </dependency>
100
    <dependency>
101
      <groupId>org.hibernate</groupId>
102
      <artifactId>hibernate-cglib-repack</artifactId>
103
    </dependency>
104
    <dependency>
105
      <groupId>org.hibernate</groupId>
106
      <artifactId>hibernate-ehcache</artifactId>
107
    </dependency>
108
    <dependency>
109
      <groupId>commons-io</groupId>
110
      <artifactId>commons-io</artifactId>
111
    </dependency>
112
    <dependency>
113
      <groupId>net.sf.json-lib</groupId>
114
      <artifactId>json-lib</artifactId>
115
      <classifier>jdk15</classifier>
116
    </dependency>
117
    <dependency>
118
      <groupId>org.json</groupId>
119
      <artifactId>json</artifactId>
120
    </dependency>
121
    <dependency>
122
      <groupId>org.springframework</groupId>
123
      <artifactId>spring-oxm</artifactId>
124
    </dependency>
125

    
126
    <!-- XmlView -->
127
    <dependency>
128
      <groupId>com.thoughtworks.xstream</groupId>
129
      <artifactId>xstream</artifactId>
130
      <exclusions>
131
        <!-- https://stackoverflow.com/questions/17077922/maven-xpp3-versus-xpp3-min -->
132
        <!-- But maybe we can exclude xpp3 instead, not sure if it is directly needed or only for xstream -->
133
        <exclusion>
134
            <groupId>xpp3</groupId>
135
            <artifactId>xpp3_min</artifactId>
136
        </exclusion>
137
      </exclusions>
138
    </dependency>
139
    
140
    <dependency>
141
      <groupId>xpp3</groupId>
142
      <artifactId>xpp3</artifactId>
143
    </dependency>
144
    <dependency>
145
      <groupId>stax</groupId>
146
      <artifactId>stax</artifactId>
147
    </dependency>
148

    
149
    <!-- JsonView -->
150
    <dependency>
151
      <!-- for xml serialization (net.sf.json.xml.XMLSerializer) -->
152
      <groupId>xom</groupId>
153
      <artifactId>xom</artifactId>
154
    </dependency>
155

    
156
    <!-- swagger -->
157
    <dependency>
158
      <groupId>io.swagger</groupId>
159
      <artifactId>swagger-annotations</artifactId>
160
    </dependency>
161

    
162
    <!-- Connection Pooling -->
163
    <dependency>
164
      <groupId>org.hibernate</groupId>
165
      <artifactId>hibernate-c3p0</artifactId>
166
    </dependency>
167
    <!-- iif -->
168
    <dependency>
169
      <groupId>de.digitalcollections.iiif</groupId>
170
      <artifactId>iiif-apis</artifactId>
171
    </dependency>
172
  </dependencies>
173
  <build>
174
    <plugins>
175
      <plugin>
176
        <artifactId>maven-resources-plugin</artifactId>
177
        <version>2.5</version>
178
        <executions>
179
          <execution>
180
            <id>copy-resources</id>
181
            <phase>validate</phase>
182
            <goals>
183
              <goal>copy-resources</goal>
184
            </goals>
185
            <configuration>
186
              <outputDirectory>${project.build.outputDirectory}/eu/etaxonomy/cdm/doc/remote/apt</outputDirectory>
187
              <resources>
188
                <resource>
189
                  <directory>../src/site/apt/remote</directory>
190
                  <filtering>true</filtering>
191
                </resource>
192
              </resources>
193
            </configuration>
194
          </execution>
195
        </executions>
196
      </plugin>
197
    </plugins>
198
  </build>
199
</project>
200

    
(4-4/4)