Project

General

Profile

1 26600 sandro.lab
<?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
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-container-parent</artifactId>
13
	<version>1.0.0-SNAPSHOT</version>
14
	<packaging>pom</packaging>
15
	<build>
16
		<plugins>
17
			<plugin>
18
				<groupId>org.apache.tomcat.maven</groupId>
19
				<artifactId>tomcat7-maven-plugin</artifactId>
20
				<configuration>
21
					<path>/${dnet.container.context}</path>
22
					<port>${dnet.container.port}</port>
23
				</configuration>
24
				<version>2.1</version>
25
			</plugin>
26
		</plugins>
27
	</build>
28
	<dependencies>
29
		<dependency>
30
			<groupId>org.slf4j</groupId>
31
			<artifactId>slf4j-api</artifactId>
32
			<version>1.6.1</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.springframework</groupId>
36
			<artifactId>spring-beans</artifactId>
37
			<version>${spring.version}</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>org.springframework</groupId>
41
			<artifactId>spring-web</artifactId>
42
			<version>${spring.version}</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>org.springframework</groupId>
46
			<artifactId>spring-webmvc</artifactId>
47
			<version>${spring.version}</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.apache.cxf</groupId>
51
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
52
			<version>${cxf.version}</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>org.apache.cxf</groupId>
56
			<artifactId>cxf-rt-transports-http</artifactId>
57
			<version>${cxf.version}</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>org.apache.cxf</groupId>
61
			<artifactId>cxf-rt-ws-policy</artifactId>
62
			<version>${cxf.version}</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>org.apache.cxf</groupId>
66
			<artifactId>cxf-rt-ws-rm</artifactId>
67
			<version>${cxf.version}</version>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.apache.cxf</groupId>
71
			<artifactId>cxf-rt-ws-security</artifactId>
72
			<version>${cxf.version}</version>
73
			<scope>test</scope>
74
		</dependency>
75
		<dependency>
76
			<groupId>eu.dnetlib</groupId>
77
			<artifactId>cnr-config</artifactId>
78
			<version>[1.0.0-SNAPSHOT]</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>eu.dnetlib</groupId>
82
			<artifactId>dnet-runtime</artifactId>
83
			<version>[1.0.0-SNAPSHOT]</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>eu.dnetlib</groupId>
87
			<artifactId>cnr-log4j-management</artifactId>
88
			<version>[1.0.0-SNAPSHOT]</version>
89
		</dependency>
90
	</dependencies>
91
</project>
92
93
94
95