Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-parent</artifactId>
6
		<version>2.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-container-parent</artifactId>
12
	<version>2.0.0</version>
13
	<packaging>pom</packaging>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-container-parent/tags/dnet-container-parent-2.0.0/</developerConnection>
16
	</scm>
17
	<build>
18
		<plugins>
19
			<plugin>
20
				<groupId>org.apache.tomcat.maven</groupId>
21
				<artifactId>tomcat7-maven-plugin</artifactId>
22
				<configuration>
23
					<path>/${dnet.container.context}</path>
24
					<port>${dnet.container.port}</port>
25
				</configuration>
26
				<version>2.2</version>
27
			</plugin>
28
		</plugins>
29
	</build>
30
	<dependencies>
31
		<dependency>
32
			<groupId>org.slf4j</groupId>
33
			<artifactId>slf4j-api</artifactId>
34
			<version>1.6.1</version>
35
		</dependency>
36
		<dependency>
37
			<groupId>org.springframework</groupId>
38
			<artifactId>spring-beans</artifactId>
39
			<version>${spring.version}</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>org.springframework</groupId>
43
			<artifactId>spring-web</artifactId>
44
			<version>${spring.version}</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>org.springframework</groupId>
48
			<artifactId>spring-webmvc</artifactId>
49
			<version>${spring.version}</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.apache.cxf</groupId>
53
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
54
			<version>${cxf.version}</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.apache.cxf</groupId>
58
			<artifactId>cxf-rt-transports-http</artifactId>
59
			<version>${cxf.version}</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>org.apache.cxf</groupId>
63
			<artifactId>cxf-rt-ws-policy</artifactId>
64
			<version>${cxf.version}</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>org.apache.cxf</groupId>
68
			<artifactId>cxf-rt-ws-rm</artifactId>
69
			<version>${cxf.version}</version>
70
		</dependency>
71
		<dependency>
72
			<groupId>org.apache.cxf</groupId>
73
			<artifactId>cxf-rt-ws-security</artifactId>
74
			<version>${cxf.version}</version>
75
			<scope>test</scope>
76
		</dependency>
77
	</dependencies>
78
</project>
79

    
80

    
81

    
82

    
83

    
(2-2/2)