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</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.2-SNAPSHOT</version>
|
14
|
<scm>
|
15
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-runtime/trunk</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-core</artifactId>
|
24
|
<version>${cxf.version}</version>
|
25
|
</dependency>
|
26
|
<dependency>
|
27
|
<groupId>org.apache.cxf</groupId>
|
28
|
<artifactId>cxf-rt-bindings-soap</artifactId>
|
29
|
<version>${cxf.version}</version>
|
30
|
</dependency>
|
31
|
<dependency>
|
32
|
<groupId>org.apache.cxf</groupId>
|
33
|
<artifactId>cxf-rt-transports-http</artifactId>
|
34
|
<version>${cxf.version}</version>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>org.apache.cxf</groupId>
|
38
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
39
|
<version>${cxf.version}</version>
|
40
|
</dependency>
|
41
|
<dependency>
|
42
|
<groupId>commons-lang</groupId>
|
43
|
<artifactId>commons-lang</artifactId>
|
44
|
<version>${commons.lang.version}</version>
|
45
|
</dependency>
|
46
|
<dependency>
|
47
|
<groupId>org.springframework</groupId>
|
48
|
<artifactId>spring-web</artifactId>
|
49
|
<version>${spring.version}</version>
|
50
|
</dependency>
|
51
|
<dependency>
|
52
|
<groupId>javax.servlet</groupId>
|
53
|
<artifactId>javax.servlet-api</artifactId>
|
54
|
<version>${javax.servlet.version}</version>
|
55
|
<scope>provided</scope>
|
56
|
</dependency>
|
57
|
|
58
|
<!-- For tomcat7 -->
|
59
|
<dependency>
|
60
|
<groupId>org.apache.tomcat</groupId>
|
61
|
<artifactId>tomcat-catalina</artifactId>
|
62
|
<version>7.0.47</version>
|
63
|
<scope>provided</scope>
|
64
|
</dependency>
|
65
|
|
66
|
</dependencies>
|
67
|
</project>
|