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"
|
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-container-parent</artifactId>
|
7
|
<version>2.0.0-SNAPSHOT</version>
|
8
|
<relativePath></relativePath>
|
9
|
</parent>
|
10
|
<modelVersion>4.0.0</modelVersion>
|
11
|
<groupId>eu.dnetlib</groupId>
|
12
|
<artifactId>dnet-wds-container</artifactId>
|
13
|
<packaging>war</packaging>
|
14
|
<version>3.0.0-SNAPSHOT</version>
|
15
|
<dependencies>
|
16
|
|
17
|
|
18
|
<!-- http://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
|
19
|
<dependency>
|
20
|
<groupId>commons-beanutils</groupId>
|
21
|
<artifactId>commons-beanutils</artifactId>
|
22
|
<version>1.8.3</version>
|
23
|
</dependency>
|
24
|
|
25
|
<dependency>
|
26
|
<groupId>org.springframework.security</groupId>
|
27
|
<artifactId>spring-security-web</artifactId>
|
28
|
<version>4.1.0.RELEASE</version>
|
29
|
</dependency>
|
30
|
|
31
|
<dependency>
|
32
|
<groupId>org.springframework.security</groupId>
|
33
|
<artifactId>spring-security-config</artifactId>
|
34
|
<version>4.1.0.RELEASE</version>
|
35
|
</dependency>
|
36
|
|
37
|
<dependency>
|
38
|
<groupId>org.springframework</groupId>
|
39
|
<artifactId>spring-tx</artifactId>
|
40
|
<version>${spring.version}</version>
|
41
|
</dependency>
|
42
|
|
43
|
|
44
|
<dependency>
|
45
|
<groupId>eu.dnetlib</groupId>
|
46
|
<artifactId>dnet-information-service</artifactId>
|
47
|
<version>1.0.0-SNAPSHOT</version>
|
48
|
</dependency>
|
49
|
<dependency>
|
50
|
<groupId>eu.dnetlib</groupId>
|
51
|
<artifactId>dnet-data-provision-services</artifactId>
|
52
|
<version>1.0.0-SNAPSHOT</version>
|
53
|
</dependency>
|
54
|
|
55
|
<dependency>
|
56
|
<groupId>eu.dnetlib</groupId>
|
57
|
<artifactId>dnet-data-support-services</artifactId>
|
58
|
<version>1.0.0-SNAPSHOT</version>
|
59
|
</dependency>
|
60
|
|
61
|
|
62
|
<dependency>
|
63
|
<groupId>eu.dnetlib</groupId>
|
64
|
<artifactId>dnet-wds</artifactId>
|
65
|
<version>1.0.0-SNAPSHOT</version>
|
66
|
</dependency>
|
67
|
|
68
|
<dependency>
|
69
|
<groupId>eu.dnetlib</groupId>
|
70
|
<artifactId>dnet-modular-uis</artifactId>
|
71
|
<version>1.0.0-SNAPSHOT</version>
|
72
|
</dependency>
|
73
|
|
74
|
|
75
|
<dependency>
|
76
|
<groupId>eu.dnetlib</groupId>
|
77
|
<artifactId>dnet-data-services</artifactId>
|
78
|
<version>1.0.0-SNAPSHOT</version>
|
79
|
</dependency>
|
80
|
|
81
|
<dependency>
|
82
|
<groupId>eu.dnetlib</groupId>
|
83
|
<artifactId>dnet-msro-service</artifactId>
|
84
|
<version>5.0.0-SNAPSHOT</version>
|
85
|
</dependency>
|
86
|
|
87
|
<dependency>
|
88
|
<groupId>eu.dnetlib</groupId>
|
89
|
<artifactId>dnet-hadoop-services</artifactId>
|
90
|
<version>1.0.0-SNAPSHOT</version>
|
91
|
</dependency>
|
92
|
|
93
|
<dependency>
|
94
|
<groupId>eu.dnetlib</groupId>
|
95
|
<artifactId>dnet-wds</artifactId>
|
96
|
<version>1.0.0-SNAPSHOT</version>
|
97
|
</dependency>
|
98
|
|
99
|
<dependency>
|
100
|
<groupId>xerces</groupId>
|
101
|
<artifactId>xercesImpl</artifactId>
|
102
|
<version>2.11.0</version>
|
103
|
<scope>compile</scope>
|
104
|
</dependency>
|
105
|
|
106
|
</dependencies>
|
107
|
</project>
|