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>jar</packaging>
|
16
|
|
17
|
|
18
|
<build>
|
19
|
<plugins>
|
20
|
<plugin>
|
21
|
<groupId>org.apache.maven.plugins</groupId>
|
22
|
<artifactId>maven-compiler-plugin</artifactId>
|
23
|
<version>3.1</version>
|
24
|
<configuration>
|
25
|
<source>1.8</source>
|
26
|
<target>1.8</target>
|
27
|
<encoding>UTF-8</encoding>
|
28
|
</configuration>
|
29
|
</plugin>
|
30
|
|
31
|
<plugin>
|
32
|
<artifactId>maven-war-plugin</artifactId>
|
33
|
<version>2.6</version>
|
34
|
<configuration>
|
35
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
36
|
</configuration>
|
37
|
</plugin>
|
38
|
<!--<plugin>
|
39
|
<groupId>cz.habarta.typescript-generator</groupId>
|
40
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
41
|
<version>1.29.366</version>
|
42
|
<executions>
|
43
|
<execution>
|
44
|
<id>generate1</id>
|
45
|
<goals>
|
46
|
<goal>generate</goal>
|
47
|
</goals>
|
48
|
<configuration>
|
49
|
<jsonLibrary>jackson2</jsonLibrary>
|
50
|
<outputFileType>implementationFile</outputFileType>
|
51
|
<mapClasses>asClasses</mapClasses>
|
52
|
<classPatterns>
|
53
|
<pattern>eu.dnetlib.domain.data.*</pattern>
|
54
|
</classPatterns>
|
55
|
<outputFile>target/typeScriptClasses.ts</outputFile>
|
56
|
<outputKind>module</outputKind>
|
57
|
</configuration>
|
58
|
</execution>
|
59
|
</executions>
|
60
|
</plugin>-->
|
61
|
</plugins>
|
62
|
</build>
|
63
|
|
64
|
<dependencies>
|
65
|
|
66
|
<dependency>
|
67
|
<groupId>org.springframework</groupId>
|
68
|
<artifactId>spring-webmvc</artifactId>
|
69
|
<version>${spring.version}</version>
|
70
|
</dependency>
|
71
|
|
72
|
<dependency>
|
73
|
<groupId>org.hibernate</groupId>
|
74
|
<artifactId>hibernate-validator-annotation-processor</artifactId>
|
75
|
<version>4.1.0.Final</version>
|
76
|
</dependency>
|
77
|
|
78
|
<dependency>
|
79
|
<groupId>log4j</groupId>
|
80
|
<artifactId>log4j</artifactId>
|
81
|
<version>(1.2, 1.5]</version>
|
82
|
<scope>compile</scope>
|
83
|
</dependency>
|
84
|
|
85
|
<dependency>
|
86
|
<groupId>eu.dnetlib</groupId>
|
87
|
<artifactId>dnet-runtime</artifactId>
|
88
|
<version>[1.0.0-SNAPSHOT, 2.0.0)</version>
|
89
|
<exclusions>
|
90
|
<exclusion> <!-- declare the exclusion here -->
|
91
|
<groupId>org.apache.geronimo.specs</groupId>
|
92
|
<artifactId>geronimo-javamail_1.4_spec</artifactId>
|
93
|
</exclusion>
|
94
|
</exclusions>
|
95
|
</dependency>
|
96
|
|
97
|
<dependency>
|
98
|
<groupId>eu.dnetlib</groupId>
|
99
|
<artifactId>uoa-utils</artifactId>
|
100
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
101
|
</dependency>
|
102
|
|
103
|
<dependency>
|
104
|
<groupId>eu.dnetlib</groupId>
|
105
|
<artifactId>uoa-domain</artifactId>
|
106
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
107
|
<exclusions>
|
108
|
<exclusion> <!-- declare the exclusion here -->
|
109
|
<groupId>cglib</groupId>
|
110
|
<artifactId>cglib</artifactId>
|
111
|
</exclusion>
|
112
|
</exclusions>
|
113
|
</dependency>
|
114
|
|
115
|
|
116
|
<dependency>
|
117
|
<groupId>cglib</groupId>
|
118
|
<artifactId>cglib-nodep</artifactId>
|
119
|
<version>2.2</version>
|
120
|
</dependency>
|
121
|
|
122
|
<dependency>
|
123
|
<groupId>eu.dnetlib</groupId>
|
124
|
<artifactId>uoa-commons</artifactId>
|
125
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
126
|
</dependency>
|
127
|
<dependency>
|
128
|
<groupId>eu.dnetlib</groupId>
|
129
|
<artifactId>uoa-clients</artifactId>
|
130
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
131
|
</dependency>
|
132
|
<dependency>
|
133
|
<groupId>eu.dnetlib</groupId>
|
134
|
<artifactId>uoa-hcm</artifactId>
|
135
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
136
|
</dependency>
|
137
|
|
138
|
<dependency>
|
139
|
<groupId>commons-io</groupId>
|
140
|
<artifactId>commons-io</artifactId>
|
141
|
<version>2.4</version>
|
142
|
</dependency>
|
143
|
|
144
|
<dependency>
|
145
|
<groupId>se.kb</groupId>
|
146
|
<artifactId>oai4j</artifactId>
|
147
|
<version>[0.6b1,)</version>
|
148
|
</dependency>
|
149
|
<dependency>
|
150
|
<groupId>xalan</groupId>
|
151
|
<artifactId>xalan</artifactId>
|
152
|
<version>2.7.2</version>
|
153
|
</dependency>
|
154
|
|
155
|
<dependency>
|
156
|
<groupId>org.slf4j</groupId>
|
157
|
<artifactId>slf4j-log4j12</artifactId>
|
158
|
<version>1.5.6</version>
|
159
|
</dependency>
|
160
|
|
161
|
<dependency>
|
162
|
<groupId>xerces</groupId>
|
163
|
<artifactId>xercesImpl</artifactId>
|
164
|
<version>2.11.0</version>
|
165
|
</dependency>
|
166
|
|
167
|
<dependency>
|
168
|
<groupId>com.fasterxml.jackson.core</groupId>
|
169
|
<artifactId>jackson-core</artifactId>
|
170
|
<version>2.5.1</version>
|
171
|
<scope>compile</scope>
|
172
|
</dependency>
|
173
|
<dependency>
|
174
|
<groupId>com.fasterxml.jackson.core</groupId>
|
175
|
<artifactId>jackson-databind</artifactId>
|
176
|
<version>2.5.1</version>
|
177
|
<scope>compile</scope>
|
178
|
</dependency>
|
179
|
|
180
|
<dependency>
|
181
|
<groupId>org.springframework</groupId>
|
182
|
<artifactId>spring-context</artifactId>
|
183
|
<version>${spring.version}</version>
|
184
|
</dependency>
|
185
|
|
186
|
<dependency>
|
187
|
<groupId>org.springframework</groupId>
|
188
|
<artifactId>spring-jdbc</artifactId>
|
189
|
<version>${spring.version}</version>
|
190
|
</dependency>
|
191
|
|
192
|
<dependency>
|
193
|
<groupId>com.sun.jersey</groupId>
|
194
|
<artifactId>jersey-client</artifactId>
|
195
|
<version>1.19.3</version>
|
196
|
</dependency>
|
197
|
|
198
|
<dependency>
|
199
|
<groupId>org.aksw.gson</groupId>
|
200
|
<artifactId>gson-utils-core</artifactId>
|
201
|
<version>1.0.0</version>
|
202
|
</dependency>
|
203
|
<dependency>
|
204
|
<groupId>org.json</groupId>
|
205
|
<artifactId>json</artifactId>
|
206
|
<version>20080701</version>
|
207
|
</dependency>
|
208
|
|
209
|
<dependency>
|
210
|
<groupId>io.springfox</groupId>
|
211
|
<artifactId>springfox-swagger2</artifactId>
|
212
|
<version>2.7.0</version>
|
213
|
</dependency>
|
214
|
<dependency>
|
215
|
<groupId>io.springfox</groupId>
|
216
|
<artifactId>springfox-swagger-ui</artifactId>
|
217
|
<version>2.7.0</version>
|
218
|
</dependency>
|
219
|
|
220
|
<!-- https://mvnrepository.com/artifact/cz.habarta.typescript-generator/typescript-generator-maven-plugin -->
|
221
|
<!--<dependency>
|
222
|
<groupId>cz.habarta.typescript-generator</groupId>
|
223
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
224
|
<version>1.29.366</version>
|
225
|
</dependency>-->
|
226
|
<!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
|
227
|
<dependency>
|
228
|
<groupId>postgresql</groupId>
|
229
|
<artifactId>postgresql</artifactId>
|
230
|
<version>9.1-901.jdbc3</version>
|
231
|
</dependency>
|
232
|
|
233
|
<!--<dependency>
|
234
|
<groupId>org.mitre</groupId>
|
235
|
<artifactId>openid-connect-client</artifactId>
|
236
|
<version>1.3.0</version>
|
237
|
<exclusions>
|
238
|
<exclusion>
|
239
|
<groupId>org.slf4j</groupId>
|
240
|
<artifactId>jcl-over-slf4j</artifactId>
|
241
|
</exclusion>
|
242
|
</exclusions>
|
243
|
</dependency>-->
|
244
|
|
245
|
<!--<dependency>
|
246
|
<groupId>org.springframework.session</groupId>
|
247
|
<artifactId>spring-session-data-redis</artifactId>
|
248
|
<version>1.3.1.RELEASE</version>
|
249
|
<type>pom</type>
|
250
|
</dependency>
|
251
|
<dependency>
|
252
|
<groupId>biz.paluch.redis</groupId>
|
253
|
<artifactId>lettuce</artifactId>
|
254
|
<version>3.5.0.Final</version>
|
255
|
</dependency>-->
|
256
|
|
257
|
|
258
|
</dependencies>
|
259
|
|
260
|
</project>
|