Project

General

Profile

Download (6.09 KB) Statistics
| Branch: | Tag: | Revision:
1 072eff81 m.doering
<?xml version="1.0" encoding="UTF-8"?>
2 49753fdd edit-jenkins
<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 88ddc14d Cherian Mathew
  <!-- 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 2ea48187 jenkins
    <version>5.29.0-SNAPSHOT</version>
8 88ddc14d Cherian Mathew
    <relativePath>../pom.xml</relativePath>
9
  </parent>
10 397763df Andreas Kohlbecker
11 88ddc14d Cherian Mathew
  <modelVersion>4.0.0</modelVersion>
12
  <artifactId>cdmlib-remote</artifactId>
13
  <properties>
14 fcb2c8b8 Andreas Kohlbecker
    <!-- custom property to hold the patch version number shouldn't this
15 88ddc14d Cherian Mathew
      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 397763df Andreas Kohlbecker
    the common data model via webservices in the wider sense</description>
21 88ddc14d Cherian Mathew
  <!-- Revert this back to "war" before committing -->
22
  <packaging>jar</packaging>
23 d1bd1389 Andreas Müller
  
24
  <build>
25
    <plugins>
26
      <plugin>
27
        <artifactId>maven-resources-plugin</artifactId>
28
        <version>2.7</version>
29
        <executions>
30
          <execution>
31
            <id>copy-resources</id>
32
            <phase>validate</phase>
33
            <goals>
34
              <goal>copy-resources</goal>
35
            </goals>
36
            <configuration>
37
              <outputDirectory>${project.build.outputDirectory}/eu/etaxonomy/cdm/doc/remote/apt</outputDirectory>
38
              <resources>
39
                <resource>
40
                  <directory>../src/site/apt/remote</directory>
41
                  <filtering>true</filtering>
42
                </resource>
43
              </resources>
44
            </configuration>
45
          </execution>
46
        </executions>
47
      </plugin>
48
    </plugins>
49
  </build>
50
  
51 88ddc14d Cherian Mathew
  <dependencies>
52
    <dependency>
53
      <groupId>eu.etaxonomy</groupId>
54
      <artifactId>cdmlib-io</artifactId>
55
    </dependency>
56 261f7549 Andreas Müller
    <dependency>
57
        <groupId>eu.etaxonomy</groupId>
58
        <artifactId>cdmlib-test</artifactId>
59
        <scope>test</scope>
60
        <version>${project.version}</version>
61
    </dependency>
62 88ddc14d Cherian Mathew
    <dependency>
63
      <groupId>javax.servlet</groupId>
64
      <artifactId>javax.servlet-api</artifactId>
65
      <scope>provided</scope>
66
    </dependency>
67
    <dependency>
68
      <groupId>org.springframework</groupId>
69 93c283c9 Andreas Müller
      <artifactId>spring-web</artifactId>
70 88ddc14d Cherian Mathew
    </dependency>
71
    <dependency>
72
      <groupId>org.springframework</groupId>
73
      <artifactId>spring-context-support</artifactId>
74
    </dependency>
75
    <dependency>
76 8a386b2c Andreas Müller
        <groupId>org.springframework</groupId>
77
        <artifactId>spring-webmvc</artifactId>
78 88ddc14d Cherian Mathew
    </dependency>
79
    <dependency>
80
      <groupId>org.springmodules</groupId>
81
      <artifactId>spring-modules-cache</artifactId>
82
      <version>0.7</version>
83
      <exclusions>
84
        <exclusion>
85
          <groupId>org.springframework</groupId>
86
          <artifactId>spring</artifactId>
87
        </exclusion>
88
        <exclusion>
89
          <groupId>org.springframework</groupId>
90
          <artifactId>spring-mock</artifactId>
91
        </exclusion>
92
      </exclusions>
93
    </dependency>
94
    <dependency>
95
      <groupId>org.springframework.security</groupId>
96
      <artifactId>spring-security-core</artifactId>
97
    </dependency>
98
    <dependency>
99
      <groupId>org.springframework.security</groupId>
100
      <artifactId>spring-security-config</artifactId>
101
    </dependency>
102
    <dependency>
103
      <groupId>org.springframework.security</groupId>
104
      <artifactId>spring-security-web</artifactId>
105 01fe562b Andreas Kohlbecker
    </dependency>
106
    <dependency>
107
      <groupId>org.springframework.security.oauth</groupId>
108
      <artifactId>spring-security-oauth2</artifactId>
109 88ddc14d Cherian Mathew
    </dependency>
110
    <dependency>
111
      <groupId>xmlunit</groupId>
112
      <artifactId>xmlunit</artifactId>
113
    </dependency>
114 96cb908c Andreas Kohlbecker
115 88ddc14d Cherian Mathew
    <dependency>
116
      <groupId>com.ibm.lsid</groupId>
117
      <artifactId>lsid-server</artifactId>
118
    </dependency>
119
    <dependency>
120
      <groupId>com.ibm.lsid</groupId>
121
      <artifactId>lsid-client</artifactId>
122
    </dependency>
123
    <dependency>
124 5db155c8 Andreas Müller
      <groupId>com.github.dozermapper</groupId>
125
      <artifactId>dozer-core</artifactId>
126
    </dependency>
127
    <dependency>
128
        <groupId>com.github.dozermapper</groupId>
129
        <artifactId>dozer-spring4</artifactId>
130 88ddc14d Cherian Mathew
    </dependency>
131
    <dependency>
132
      <groupId>net.sf.json-lib</groupId>
133
      <artifactId>json-lib</artifactId>
134
      <classifier>jdk15</classifier>
135
    </dependency>
136
    <dependency>
137
      <groupId>org.json</groupId>
138
      <artifactId>json</artifactId>
139
    </dependency>
140
    <dependency>
141
      <groupId>org.springframework</groupId>
142 93c283c9 Andreas Müller
      <artifactId>spring-oxm</artifactId>
143 88ddc14d Cherian Mathew
    </dependency>
144 02c32709 m.doering
145 88ddc14d Cherian Mathew
    <!-- XmlView -->
146
    <dependency>
147
      <groupId>com.thoughtworks.xstream</groupId>
148
      <artifactId>xstream</artifactId>
149 c47aa823 Andreas Müller
      <exclusions>
150
        <!-- https://stackoverflow.com/questions/17077922/maven-xpp3-versus-xpp3-min -->
151
        <!-- But maybe we can exclude xpp3 instead, not sure if it is directly needed or only for xstream -->
152
        <exclusion>
153
            <groupId>xpp3</groupId>
154
            <artifactId>xpp3_min</artifactId>
155
        </exclusion>
156
      </exclusions>
157 88ddc14d Cherian Mathew
    </dependency>
158 c47aa823 Andreas Müller
    
159 88ddc14d Cherian Mathew
    <dependency>
160
      <groupId>xpp3</groupId>
161
      <artifactId>xpp3</artifactId>
162
    </dependency>
163 7c20dfbe Alexander Oppermann
164 88ddc14d Cherian Mathew
    <!-- JsonView -->
165
    <dependency>
166
      <!-- for xml serialization (net.sf.json.xml.XMLSerializer) -->
167
      <groupId>xom</groupId>
168
      <artifactId>xom</artifactId>
169 0afeecdf Andreas Müller
<!--       <exclusions> -->
170
<!--         <exclusion> -->
171
<!--           <groupId>xml-apis</groupId> -->
172
<!--           <artifactId>xml-apis</artifactId> -->
173
<!--         </exclusion> -->
174
<!--       </exclusions> -->
175 88ddc14d Cherian Mathew
    </dependency>
176 7c20dfbe Alexander Oppermann
177 fcb2c8b8 Andreas Kohlbecker
    <!-- swagger -->
178
    <dependency>
179 e6a83c5b Andreas Kohlbecker
      <groupId>io.swagger</groupId>
180
      <artifactId>swagger-annotations</artifactId>
181 fcb2c8b8 Andreas Kohlbecker
    </dependency>
182 17f56886 Alexander Oppermann
183 88ddc14d Cherian Mathew
    <!-- Connection Pooling -->
184
    <dependency>
185
      <groupId>org.hibernate</groupId>
186
      <artifactId>hibernate-c3p0</artifactId>
187
    </dependency>
188 2340b64f Andreas Kohlbecker
    <!-- iif -->
189
    <dependency>
190
      <groupId>de.digitalcollections.iiif</groupId>
191
      <artifactId>iiif-apis</artifactId>
192
    </dependency>
193 88ddc14d Cherian Mathew
  </dependencies>
194 072eff81 m.doering
</project>