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

    
70
        <dependency>
71
            <groupId>cglib</groupId>
72
            <artifactId>cglib-nodep</artifactId>
73
            <version>2.2</version>
74
        </dependency>
75

    
76
        <dependency>
77
            <groupId>eu.dnetlib</groupId>
78
            <artifactId>uoa-commons</artifactId>
79
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
80
        </dependency>
81
        <dependency>
82
            <groupId>eu.dnetlib</groupId>
83
            <artifactId>uoa-clients</artifactId>
84
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
85
        </dependency>
86
        <dependency>
87
            <groupId>eu.dnetlib</groupId>
88
            <artifactId>uoa-hcm</artifactId>
89
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
90
        </dependency>
91

    
92
        <dependency>
93
            <groupId>commons-io</groupId>
94
            <artifactId>commons-io</artifactId>
95
            <version>2.4</version>
96
        </dependency>
97

    
98
        <dependency>
99
            <groupId>se.kb</groupId>
100
            <artifactId>oai4j</artifactId>
101
            <version>[0.6b1,)</version>
102
        </dependency>
103
        <dependency>
104
            <groupId>xalan</groupId>
105
            <artifactId>xalan</artifactId>
106
            <version>2.7.2</version>
107
        </dependency>
108

    
109
        <dependency>
110
            <groupId>xerces</groupId>
111
            <artifactId>xercesImpl</artifactId>
112
            <version>2.11.0</version>
113
        </dependency>
114

    
115
        <dependency>
116
            <groupId>com.fasterxml.jackson.core</groupId>
117
            <artifactId>jackson-core</artifactId>
118
            <version>2.5.1</version>
119
            <scope>compile</scope>
120
        </dependency>
121
        <dependency>
122
            <groupId>com.fasterxml.jackson.core</groupId>
123
            <artifactId>jackson-databind</artifactId>
124
            <version>2.5.1</version>
125
            <scope>compile</scope>
126
        </dependency>
127

    
128
        <dependency>
129
            <groupId>org.springframework</groupId>
130
            <artifactId>spring-context</artifactId>
131
            <version>${spring.version}</version>
132
        </dependency>
133

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

    
140
        <dependency>
141
            <groupId>com.sun.jersey</groupId>
142
            <artifactId>jersey-client</artifactId>
143
            <version>1.19.3</version>
144
        </dependency>
145

    
146
        <dependency>
147
            <groupId>org.aksw.gson</groupId>
148
            <artifactId>gson-utils-core</artifactId>
149
            <version>1.0.0</version>
150
        </dependency>
151
        <dependency>
152
            <groupId>org.json</groupId>
153
            <artifactId>json</artifactId>
154
            <version>20080701</version>
155
        </dependency>
156

    
157
        <dependency>
158
            <groupId>io.springfox</groupId>
159
            <artifactId>springfox-swagger2</artifactId>
160
            <version>2.7.0</version>
161
        </dependency>
162
        <dependency>
163
            <groupId>io.springfox</groupId>
164
            <artifactId>springfox-swagger-ui</artifactId>
165
            <version>2.7.0</version>
166
        </dependency>
167

    
168
        <!-- https://mvnrepository.com/artifact/cz.habarta.typescript-generator/typescript-generator-maven-plugin -->
169
        <!--<dependency>
170
            <groupId>cz.habarta.typescript-generator</groupId>
171
            <artifactId>typescript-generator-maven-plugin</artifactId>
172
            <version>1.29.366</version>
173
        </dependency>-->
174
        <!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
175
        <dependency>
176
            <groupId>postgresql</groupId>
177
            <artifactId>postgresql</artifactId>
178
            <version>9.1-901.jdbc3</version>
179
        </dependency>
180

    
181
        <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina -->
182
        <dependency>
183
            <groupId>org.apache.tomcat</groupId>
184
            <artifactId>tomcat-catalina</artifactId>
185
            <version>LATEST</version>
186
        </dependency>
187

    
188
        <dependency>
189
            <groupId>commons-fileupload</groupId>
190
            <artifactId>commons-fileupload</artifactId>
191
            <version>LATEST</version>
192
        </dependency>
193

    
194
        <dependency>
195
            <groupId>org.mitre</groupId>
196
            <artifactId>openid-connect-client</artifactId>
197
            <version>1.3.0</version>
198
            <exclusions>
199
                <exclusion>
200
                    <groupId>org.slf4j</groupId>
201
                    <artifactId>jcl-over-slf4j</artifactId>
202
                </exclusion>
203
            </exclusions>
204
        </dependency>
205

    
206

    
207
        <dependency>
208
            <groupId>org.springframework.session</groupId>
209
            <artifactId>spring-session-data-redis</artifactId>
210
            <version>1.3.1.RELEASE</version>
211
            <type>pom</type>
212
        </dependency>
213
        <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
214
        <dependency>
215
            <groupId>redis.clients</groupId>
216
            <artifactId>jedis</artifactId>
217
            <version>2.9.0</version>
218
        </dependency>
219

    
220
    </dependencies>
221

    
222
    <build>
223
        <plugins>
224
            <plugin>
225
                <groupId>org.apache.maven.plugins</groupId>
226
                <artifactId>maven-compiler-plugin</artifactId>
227
                <version>3.1</version>
228
                <configuration>
229
                    <source>1.8</source>
230
                    <target>1.8</target>
231
                    <encoding>UTF-8</encoding>
232
                </configuration>
233
            </plugin>
234

    
235
            <plugin>
236
                <artifactId>maven-war-plugin</artifactId>
237
                <version>2.6</version>
238
                <configuration>
239
                    <failOnMissingWebXml>false</failOnMissingWebXml>
240
                </configuration>
241
            </plugin>
242

    
243
            <plugin>
244
                <groupId>com.googlecode.maven-download-plugin</groupId>
245
                <artifactId>download-maven-plugin</artifactId>
246
                <version>1.3.0</version>
247
                <executions>
248
                    <execution>
249
                        <phase>process-resources</phase>
250
                        <goals>
251
                            <goal>wget</goal>
252
                        </goals>
253
                        <configuration>
254
                            <url>
255
                                https://github.com/ostranme/swagger-ui-themes/archive/v3.0.0.zip
256
                            </url>
257
                            <unpack>true</unpack>
258
                            <outputDirectory>${project.build.directory}</outputDirectory>
259
                        </configuration>
260
                    </execution>
261
                </executions>
262
            </plugin>
263

    
264
            <plugin>
265
                <groupId>org.apache.maven.plugins</groupId>
266
                <artifactId>maven-antrun-plugin</artifactId>
267
                <version>1.8</version>
268
                <executions>
269
                    <execution>
270
                        <phase>prepare-package</phase>
271
                        <!--<goals>
272
                            <goal>run</goal>
273
                        </goals>-->
274
                        <configuration>
275
                            <tasks>
276
                                <sequential>
277
                                    <echo>Add theme</echo>
278
                                    <replace token="&lt;/head&gt;"
279
                                             value="&lt;link href='webjars/springfox-swagger-ui/themes/2.x/theme-feeling-blue.css' rel=&quot;stylesheet&quot;/&gt;&lt;/head&gt;"
280
                                             dir="${project.build.directory}/classes/META-INF/resources">
281
                                        <include name="swagger-ui.html"/>
282
                                    </replace>
283
                                </sequential>
284
                            </tasks>
285
                        </configuration>
286
                    </execution>
287
                </executions>
288
            </plugin>
289

    
290
            <!--<plugin>
291
                <groupId>cz.habarta.typescript-generator</groupId>
292
                <artifactId>typescript-generator-maven-plugin</artifactId>
293
                <version>1.29.366</version>
294
                <executions>
295
                    <execution>
296
                        <id>generate1</id>
297
                        <goals>
298
                            <goal>generate</goal>
299
                        </goals>
300
                        <configuration>
301
                            <jsonLibrary>jackson2</jsonLibrary>
302
                            <outputFileType>implementationFile</outputFileType>
303
                            <mapClasses>asClasses</mapClasses>
304
                            <classPatterns>
305
                                <pattern>eu.dnetlib.domain.data.*</pattern>
306
                            </classPatterns>
307
                            <outputFile>target/typeScriptClasses.ts</outputFile>
308
                            <outputKind>module</outputKind>
309
                        </configuration>
310
                    </execution>
311
                </executions>
312
            </plugin>-->
313
        </plugins>
314
    </build>
315

    
316

    
317
</project>
    (1-1/1)