Project

General

Profile

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
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5

    
6
    <parent>
7
        <groupId>eu.dnetlib</groupId>
8
        <artifactId>dnet45-parent</artifactId>
9
        <version>1.0.0-SNAPSHOT</version>
10
    </parent>
11
    <modelVersion>4.0.0</modelVersion>
12
    <groupId>eu.dnetlib</groupId>
13
    <artifactId>uoa-repository-manager-service</artifactId>
14
    <version>1.0.0-SNAPSHOT</version>
15
    <packaging>war</packaging>
16

    
17

    
18
    <dependencies>
19

    
20
        <dependency>
21
            <groupId>org.springframework</groupId>
22
            <artifactId>spring-webmvc</artifactId>
23
            <version>${spring.version}</version>
24
        </dependency>
25

    
26
        <dependency>
27
            <groupId>org.hibernate</groupId>
28
            <artifactId>hibernate-validator-annotation-processor</artifactId>
29
            <version>4.1.0.Final</version>
30
        </dependency>
31

    
32
        <dependency>
33
            <groupId>log4j</groupId>
34
            <artifactId>log4j</artifactId>
35
            <version>(1.2, 1.5]</version>
36
            <scope>compile</scope>
37
        </dependency>
38

    
39
        <dependency>
40
            <groupId>eu.dnetlib</groupId>
41
            <artifactId>dnet-runtime</artifactId>
42
            <version>[1.0.0-SNAPSHOT, 2.0.0)</version>
43
            <exclusions>
44
                <exclusion>  <!-- declare the exclusion here -->
45
                    <groupId>org.apache.geronimo.specs</groupId>
46
                    <artifactId>geronimo-javamail_1.4_spec</artifactId>
47
                </exclusion>
48
            </exclusions>
49
        </dependency>
50

    
51
        <dependency>
52
            <groupId>eu.dnetlib</groupId>
53
            <artifactId>uoa-utils</artifactId>
54
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
55
        </dependency>
56

    
57
        <dependency>
58
            <groupId>eu.dnetlib</groupId>
59
            <artifactId>uoa-domain</artifactId>
60
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
61
            <exclusions>
62
                <exclusion>  <!-- declare the exclusion here -->
63
                    <groupId>cglib</groupId>
64
                    <artifactId>cglib</artifactId>
65
                </exclusion>
66
            </exclusions>
67
        </dependency>
68

    
69
        <dependency>
70
            <groupId>eu.dnetlib</groupId>
71
            <artifactId>dnet-openaire-usage-stats-sushilite</artifactId>
72
            <version>1.0.0-SNAPSHOT</version>
73
        </dependency>
74

    
75

    
76
        <dependency>
77
            <groupId>cglib</groupId>
78
            <artifactId>cglib-nodep</artifactId>
79
            <version>2.2</version>
80
        </dependency>
81

    
82
        <dependency>
83
            <groupId>eu.dnetlib</groupId>
84
            <artifactId>uoa-commons</artifactId>
85
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
86
        </dependency>
87
        <dependency>
88
            <groupId>eu.dnetlib</groupId>
89
            <artifactId>uoa-clients</artifactId>
90
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
91
        </dependency>
92
        <dependency>
93
            <groupId>eu.dnetlib</groupId>
94
            <artifactId>uoa-hcm</artifactId>
95
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
96
        </dependency>
97

    
98
        <dependency>
99
            <groupId>commons-io</groupId>
100
            <artifactId>commons-io</artifactId>
101
            <version>2.4</version>
102
        </dependency>
103

    
104
        <dependency>
105
            <groupId>se.kb</groupId>
106
            <artifactId>oai4j</artifactId>
107
            <version>[0.6b1,)</version>
108
        </dependency>
109
        <dependency>
110
            <groupId>xalan</groupId>
111
            <artifactId>xalan</artifactId>
112
            <version>2.7.2</version>
113
        </dependency>
114

    
115
        <dependency>
116
            <groupId>xerces</groupId>
117
            <artifactId>xercesImpl</artifactId>
118
            <version>2.11.0</version>
119
        </dependency>
120

    
121
        <dependency>
122
            <groupId>com.fasterxml.jackson.core</groupId>
123
            <artifactId>jackson-core</artifactId>
124
            <version>2.5.1</version>
125
            <scope>compile</scope>
126
        </dependency>
127
        <dependency>
128
            <groupId>com.fasterxml.jackson.core</groupId>
129
            <artifactId>jackson-databind</artifactId>
130
            <version>2.5.1</version>
131
            <scope>compile</scope>
132
        </dependency>
133

    
134
        <dependency>
135
            <groupId>org.springframework</groupId>
136
            <artifactId>spring-context</artifactId>
137
            <version>${spring.version}</version>
138
        </dependency>
139

    
140
        <dependency>
141
            <groupId>org.springframework</groupId>
142
            <artifactId>spring-jdbc</artifactId>
143
            <version>${spring.version}</version>
144
        </dependency>
145

    
146
        <dependency>
147
            <groupId>com.sun.jersey</groupId>
148
            <artifactId>jersey-client</artifactId>
149
            <version>1.19.3</version>
150
        </dependency>
151

    
152
        <dependency>
153
            <groupId>org.aksw.gson</groupId>
154
            <artifactId>gson-utils-core</artifactId>
155
            <version>1.0.0</version>
156
        </dependency>
157
        <dependency>
158
            <groupId>org.json</groupId>
159
            <artifactId>json</artifactId>
160
            <version>20080701</version>
161
        </dependency>
162

    
163
        <dependency>
164
            <groupId>com.sun.mail</groupId>
165
            <artifactId>javax.mail</artifactId>
166
            <version>1.6.0</version>
167
        </dependency>
168

    
169
        <dependency>
170
            <groupId>io.springfox</groupId>
171
            <artifactId>springfox-swagger2</artifactId>
172
            <version>2.7.0</version>
173
        </dependency>
174
        <dependency>
175
            <groupId>io.springfox</groupId>
176
            <artifactId>springfox-swagger-ui</artifactId>
177
            <version>2.7.0</version>
178
        </dependency>
179
        <!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
180
        <dependency>
181
            <groupId>postgresql</groupId>
182
            <artifactId>postgresql</artifactId>
183
            <version>9.1-901.jdbc3</version>
184
        </dependency>
185
        <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina -->
186
        <dependency>
187
            <groupId>org.apache.tomcat</groupId>
188
            <artifactId>tomcat-catalina</artifactId>
189
            <version>LATEST</version>
190
        </dependency>
191

    
192
        <dependency>
193
            <groupId>commons-fileupload</groupId>
194
            <artifactId>commons-fileupload</artifactId>
195
            <version>LATEST</version>
196
        </dependency>
197

    
198
        <dependency>
199
            <groupId>org.mitre</groupId>
200
            <artifactId>openid-connect-client</artifactId>
201
            <version>1.3.0</version>
202
            <exclusions>
203
                <exclusion>
204
                    <groupId>org.slf4j</groupId>
205
                    <artifactId>jcl-over-slf4j</artifactId>
206
                </exclusion>
207
            </exclusions>
208
        </dependency>
209

    
210

    
211
        <dependency>
212
            <groupId>org.springframework.session</groupId>
213
            <artifactId>spring-session-data-redis</artifactId>
214
            <version>1.3.1.RELEASE</version>
215
            <type>pom</type>
216
        </dependency>
217
        <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
218
        <dependency>
219
            <groupId>redis.clients</groupId>
220
            <artifactId>jedis</artifactId>
221
            <version>2.9.0</version>
222
        </dependency>
223
        <dependency>
224
            <groupId>com.google.code.gson</groupId>
225
            <artifactId>gson</artifactId>
226
            <version>2.6.2</version>
227
        </dependency>
228

    
229
        <dependency>
230
            <groupId>com.thetransactioncompany</groupId>
231
            <artifactId>cors-filter</artifactId>
232
            <version>2.5</version>
233
        </dependency>
234

    
235
        <dependency>
236
            <groupId>org.springframework.cloud</groupId>
237
            <artifactId>spring-cloud-starter-hystrix</artifactId>
238
            <version>1.1.5.RELEASE</version>
239
        </dependency>
240

    
241
        <!-- https://mvnrepository.com/artifact/javax.xml.ws/jaxws-api -->
242
        <dependency>
243
            <groupId>javax.xml.ws</groupId>
244
            <artifactId>jaxws-api</artifactId>
245
            <version>2.3.0</version>
246
        </dependency>
247
        <!-- https://mvnrepository.com/artifact/javax.jws/javax.jws-api -->
248
        <dependency>
249
            <groupId>javax.jws</groupId>
250
            <artifactId>javax.jws-api</artifactId>
251
            <version>1.1</version>
252
        </dependency>
253
        <dependency>
254
            <groupId>javax.xml.bind</groupId>
255
            <artifactId>jaxb-api</artifactId>
256
            <version>2.3.0</version>
257
        </dependency>
258
        <dependency>
259
            <groupId>com.sun.xml.bind</groupId>
260
            <artifactId>jaxb-impl</artifactId>
261
            <version>2.3.0</version>
262
        </dependency>
263
        <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core -->
264
        <dependency>
265
            <groupId>com.sun.xml.bind</groupId>
266
            <artifactId>jaxb-core</artifactId>
267
            <version>2.3.0</version>
268
        </dependency>
269
        <dependency>
270
          <groupId>javax.activation</groupId>
271
          <artifactId>activation</artifactId>
272
          <version>1.1-rev-1</version>
273
        </dependency>
274

    
275

    
276
    </dependencies>
277

    
278
    <build>
279
        <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
280
        <plugins>
281
           <plugin>
282
                <groupId>org.apache.maven.plugins</groupId>
283
                <artifactId>maven-compiler-plugin</artifactId>
284
                <version>3.7.0</version>
285
                <configuration>
286
                    <source>1.8</source>
287
                    <target>1.8</target>
288
                    <encoding>UTF-8</encoding>
289
                </configuration>
290
            </plugin>
291

    
292
            <plugin>
293
                <artifactId>maven-war-plugin</artifactId>
294
                <version>2.6</version>
295
                <configuration>
296
                    <failOnMissingWebXml>false</failOnMissingWebXml>
297
                </configuration>
298
            </plugin>
299
        </plugins>
300
        <finalName>uoa-repository-manager-service</finalName>
301
        <resources>
302
            <resource>
303
                <directory>src/main/resources</directory>
304
                <filtering>true</filtering>
305
            </resource>
306
        </resources>
307
    </build>
308

    
309

    
310
</project>
(2-2/2)