Project

General

Profile

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