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>dnet-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-functionality-services</artifactId>
12
	<packaging>war</packaging>
13
	<version>1.0.0-SNAPSHOT</version>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>uoa-search</artifactId>
18
			<version>[1.0.0-SNAPSHOT,)</version>
19
			<exclusions> <!-- already included in tomcat7 -->
20
				<exclusion>
21
					<groupId>javax.servlet</groupId>
22
					<artifactId>javax.servlet-api</artifactId>
23
				</exclusion>
24
			</exclusions>
25
		</dependency>
26
		<dependency>
27
			<groupId>eu.dnetlib</groupId>
28
			<artifactId>uoa-stats-service</artifactId>
29
			<version>[1.0.0-SNAPSHOT,)</version>
30
			<exclusions> <!-- already included in tomcat7 -->
31
				<exclusion>
32
					<groupId>javax.servlet</groupId>
33
					<artifactId>javax.servlet-api</artifactId>
34
				</exclusion>
35
			</exclusions>
36
		</dependency>
37
		<dependency>
38
			<groupId>eu.dnetlib</groupId>
39
			<artifactId>uoa-clients</artifactId>
40
			<version>[1.0.0-SNAPSHOT,)</version>
41
			<exclusions>
42
				<exclusion>
43
					<groupId>cglib</groupId>
44
					<artifactId>cglib</artifactId>
45
				</exclusion>
46
			</exclusions>
47
		</dependency>
48
		<dependency>
49
			<groupId>eu.dnetlib</groupId>
50
			<artifactId>uoa-hcm</artifactId>
51
			<version>[1.0.0-SNAPSHOT,)</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>eu.dnetlib</groupId>
55
			<artifactId>dnet-runtime</artifactId>
56
			<version>[1.0.0-SNAPSHOT,)</version>
57
		</dependency>
58
		<dependency>
59
			<groupId>cglib</groupId>
60
			<artifactId>cglib-nodep</artifactId>
61
			<version>2.2</version>
62
		</dependency>
63
		<dependency>
64
			<groupId>org.apache.cxf</groupId>
65
			<artifactId>cxf-rt-transports-http</artifactId>
66
			<version>${cxf.version}</version>
67
		</dependency>
68
        <dependency>
69
            <groupId>jstl</groupId>
70
            <artifactId>jstl</artifactId>
71
            <version>1.2</version>
72
        </dependency>
73
    </dependencies>
74
</project>
(3-3/3)