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

    
96

    
97

    
98

    
99

    
(2-2/2)