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-stats-services</artifactId>
12
	<packaging>war</packaging>
13
	<version>2.0.0-SNAPSHOT</version>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>uoa-stats-service</artifactId>
18
			<version>[2.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-clients</artifactId>
29
			<version>[2.0.0-SNAPSHOT,)</version>
30
			<exclusions>
31
				<exclusion>
32
					<groupId>cglib</groupId>
33
					<artifactId>cglib</artifactId>
34
				</exclusion>
35
			</exclusions>
36
		</dependency>
37
		<dependency>
38
			<groupId>eu.dnetlib</groupId>
39
			<artifactId>uoa-hcm</artifactId>
40
			<version>[2.0.0-SNAPSHOT,)</version>
41
		</dependency>
42
		<dependency>
43
			<groupId>eu.dnetlib</groupId>
44
			<artifactId>dnet-runtime</artifactId>
45
			<version>[1.0.0-SNAPSHOT,)</version>
46
		</dependency>
47
		<dependency>
48
			<groupId>cglib</groupId>
49
			<artifactId>cglib-nodep</artifactId>
50
			<version>2.2</version>
51
		</dependency>
52
		<dependency>
53
			<groupId>org.apache.cxf</groupId>
54
			<artifactId>cxf-rt-transports-http</artifactId>
55
			<version>${cxf.version}</version>
56
		</dependency>
57
        <dependency>
58
            <groupId>jstl</groupId>
59
            <artifactId>jstl</artifactId>
60
            <version>1.2</version>
61
        </dependency>
62
		<dependency>
63
			<groupId>org.slf4j</groupId>
64
			<artifactId>slf4j-api</artifactId>
65
			<version>[1.7.6, )</version>
66
		</dependency>
67
    </dependencies>
68
    <build>
69
        <finalName>statsManager</finalName>
70
    </build>
71
</project>
    (1-1/1)