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"
|
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.dnetlib</groupId>
|
6
|
<artifactId>dnet45-parent</artifactId>
|
7
|
<version>1.0.0-SNAPSHOT</version>
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.dnetlib</groupId>
|
11
|
<artifactId>dnet-openaire-connector-service</artifactId>
|
12
|
<packaging>war</packaging>
|
13
|
<version>3.0.0-SNAPSHOT</version>
|
14
|
<build>
|
15
|
<plugins>
|
16
|
<!--
|
17
|
<plugin>
|
18
|
<groupId>eu.dnetlib</groupId>
|
19
|
<artifactId>dnet-jetty-maven-plugin</artifactId>
|
20
|
<version>6.1.11-SNAPSHOT</version>
|
21
|
<configuration>
|
22
|
<contextPath>/app</contextPath>
|
23
|
<connectors>
|
24
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
25
|
<port>8080</port>
|
26
|
<maxIdleTime>60000</maxIdleTime>
|
27
|
</connector>
|
28
|
</connectors>
|
29
|
</configuration>
|
30
|
</plugin>
|
31
|
-->
|
32
|
</plugins>
|
33
|
</build>
|
34
|
<dependencies>
|
35
|
<dependency>
|
36
|
<groupId>eu.dnetlib</groupId>
|
37
|
<artifactId>uoa-openaire-connector</artifactId>
|
38
|
<version>[2.0.0-SNAPSHOT,)</version>
|
39
|
</dependency>
|
40
|
<dependency>
|
41
|
<groupId>eu.dnetlib</groupId>
|
42
|
<artifactId>uoa-clients</artifactId>
|
43
|
<version>[2.0.0-SNAPSHOT,)</version>
|
44
|
</dependency>
|
45
|
<dependency>
|
46
|
<groupId>eu.dnetlib</groupId>
|
47
|
<artifactId>uoa-hcm</artifactId>
|
48
|
<version>[2.0.0-SNAPSHOT,)</version>
|
49
|
</dependency>
|
50
|
<dependency>
|
51
|
<groupId>org.apache.cxf</groupId>
|
52
|
<artifactId>cxf-rt-transports-http</artifactId>
|
53
|
<version>${cxf.version}</version>
|
54
|
</dependency>
|
55
|
<dependency>
|
56
|
<groupId>eu.dnetlib</groupId>
|
57
|
<artifactId>dnet-runtime</artifactId>
|
58
|
<version>[1.0.2-SNAPSHOT,)</version>
|
59
|
</dependency>
|
60
|
</dependencies>
|
61
|
</project>
|