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-shadow-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

    
28
			<groupId>eu.dnetlib</groupId>
29
			<artifactId>uoa-clients</artifactId>
30
			<version>[1.0.0-SNAPSHOT,)</version>
31
			<exclusions>
32
				<exclusion>
33
					<groupId>cglib</groupId>
34
					<artifactId>cglib</artifactId>
35
				</exclusion>
36
			</exclusions>
37
		</dependency>
38
		<dependency>
39
			<groupId>eu.dnetlib</groupId>
40
			<artifactId>uoa-hcm</artifactId>
41
			<version>[1.0.0-SNAPSHOT,)</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>eu.dnetlib</groupId>
45
			<artifactId>dnet-runtime</artifactId>
46
			<version>[1.0.0-SNAPSHOT,)</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>cglib</groupId>
50
			<artifactId>cglib-nodep</artifactId>
51
			<version>2.2</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>org.apache.cxf</groupId>
55
			<artifactId>cxf-rt-transports-http</artifactId>
56
			<version>${cxf.version}</version>
57
		</dependency>
58
        <dependency>
59
            <groupId>jstl</groupId>
60
            <artifactId>jstl</artifactId>
61
            <version>1.2</version>
62
        </dependency>
63
    </dependencies>
64
</project>
(2-2/2)