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>dnet-parent</artifactId>
6
		<version>1.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-runtime</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.0</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-runtime/tags/dnet-runtime-1.0.0</developerConnection>
16
	</scm>
17
	
18
	<dependencies>
19
		<!-- Do not remove these dependencies, even if they look like they are 
20
			unused other modules expect them to be here -->
21
		<dependency>
22
			<groupId>org.apache.cxf</groupId>
23
			<artifactId>cxf-api</artifactId>
24
			<version>${cxf.version}</version>
25
		</dependency>
26
		<dependency>
27
			<groupId>org.apache.cxf</groupId>
28
			<artifactId>cxf-rt-core</artifactId>
29
			<version>${cxf.version}</version>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.apache.cxf</groupId>
33
			<artifactId>cxf-rt-bindings-soap</artifactId>
34
			<version>${cxf.version}</version>
35
		</dependency>
36
		<dependency>
37
			<groupId>org.apache.cxf</groupId>
38
			<artifactId>cxf-rt-transports-http</artifactId>
39
			<version>${cxf.version}</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>org.apache.cxf</groupId>
43
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
44
			<version>${cxf.version}</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>commons-lang</groupId>
48
			<artifactId>commons-lang</artifactId>
49
			<version>${commons.lang.version}</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.springframework</groupId>
53
			<artifactId>spring-web</artifactId>
54
			<version>${spring.version}</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>javax.servlet</groupId>
58
			<artifactId>javax.servlet-api</artifactId>
59
			<version>${javax.servlet.version}</version>
60
			<scope>provided</scope>
61
		</dependency>
62
		
63
		<!-- For tomcat7 -->
64
		<dependency>
65
			<groupId>org.apache.tomcat</groupId>
66
			<artifactId>tomcat-catalina</artifactId>
67
			<version>7.0.47</version>
68
			<scope>provided</scope>
69
		</dependency>
70

    
71
	</dependencies>
72
</project>
(2-2/2)