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-runtime</artifactId>
13
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<dependencies>
16
		<!-- Do not remove these dependencies, even if they look like they are
17
			unused other modules expect them to be here -->
18
		<dependency>
19
			<groupId>org.apache.cxf</groupId>
20
			<artifactId>cxf-api</artifactId>
21
			<version>${cxf.version}</version>
22
		</dependency>
23
		<dependency>
24
			<groupId>org.apache.cxf</groupId>
25
			<artifactId>cxf-rt-core</artifactId>
26
			<version>${cxf.version}</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>org.apache.cxf</groupId>
30
			<artifactId>cxf-rt-bindings-soap</artifactId>
31
			<version>${cxf.version}</version>
32
		</dependency>
33
		<dependency>
34
			<groupId>org.apache.cxf</groupId>
35
			<artifactId>cxf-rt-transports-http</artifactId>
36
			<version>${cxf.version}</version>
37
		</dependency>
38
		<dependency>
39
			<groupId>org.apache.cxf</groupId>
40
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
41
			<version>${cxf.version}</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>commons-lang</groupId>
45
			<artifactId>commons-lang</artifactId>
46
			<version>${commons.lang.version}</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.springframework</groupId>
50
			<artifactId>spring-web</artifactId>
51
			<version>${spring.version}</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>javax.servlet</groupId>
55
			<artifactId>javax.servlet-api</artifactId>
56
			<version>${javax.servlet.version}</version>
57
			<scope>provided</scope>
58
		</dependency>
59
60
		<!-- For tomcat7 -->
61
		<dependency>
62
			<groupId>org.apache.tomcat</groupId>
63
			<artifactId>tomcat-catalina</artifactId>
64
			<version>7.0.47</version>
65
			<scope>provided</scope>
66
		</dependency>
67
68
		<!-- For jetty6 -->
69
<!-- 		<dependency> -->
70
<!-- 			<groupId>jetty</groupId> -->
71
<!-- 			<artifactId>jetty</artifactId> -->
72
<!-- 			<version>6.1.11</version> -->
73
<!-- 			<scope>provided</scope> -->
74
<!-- 		</dependency> -->
75
<!-- 		<dependency> -->
76
<!-- 			<groupId>org.apache.cxf</groupId> -->
77
<!-- 			<artifactId>cxf-rt-transports-http-jetty</artifactId> -->
78
<!-- 			<version>${cxf.version}</version> -->
79
<!-- 			<scope>provided</scope> -->
80
<!-- 		</dependency> -->
81
82
	</dependencies>
83
</project>