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" 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>dnet45-parent</artifactId>
6
		<version>1.0.0-SNAPSHOT</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-container-parent</artifactId>
12
	<version>1.0.1-SNAPSHOT</version>
13
	<packaging>pom</packaging>
14
	<scm>
15
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-container-parent/trunk</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.1</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
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>cnr-config</artifactId>
80
			<version>[1.0.0,2.0.0)</version>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>dnet-runtime</artifactId>
85
			<version>[1.0.0,2.0.0)</version>
86
		</dependency>
87
		<dependency>
88
			<groupId>eu.dnetlib</groupId>
89
			<artifactId>cnr-log4j-management</artifactId>
90
			<version>[1.0.0,2.0.0)</version>
91
		</dependency>
92
	</dependencies>
93
</project>
94

    
95

    
96

    
97

    
98

    
(2-2/2)