Project

General

Profile

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</version>
8
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-parthenos-container</artifactId>
13
	<packaging>war</packaging>
14
	<version>2.0.0-RELEASE</version>
15
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/webapps/dnet-parthenos-container/branches/release</developerConnection>
17
	</scm>
18

    
19
	<dependencies>
20
		<dependency>
21
			<groupId>commons-beanutils</groupId>
22
			<artifactId>commons-beanutils</artifactId>
23
			<version>1.9.2</version>
24
		</dependency>
25

    
26
		<dependency>
27
			<groupId>org.springframework.security</groupId>
28
			<artifactId>spring-security-web</artifactId>
29
			<version>4.2.2.RELEASE</version>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.springframework.security</groupId>
33
			<artifactId>spring-security-config</artifactId>
34
			<version>4.2.2.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
		<dependency>
44
			<groupId>eu.dnetlib</groupId>
45
			<artifactId>dnet-parthenos</artifactId>
46
			<version>[1.0.0, 2.0.0)</version>
47
		</dependency>
48

    
49
		<dependency>
50
			<groupId>eu.dnetlib</groupId>
51
			<artifactId>dnet-data-services</artifactId>
52
			<version>[2.0.0-SAXONHE]</version>
53
		</dependency>
54

    
55
		<dependency>
56
			<groupId>eu.dnetlib</groupId>
57
			<artifactId>dnet-modular-uis</artifactId>
58
			<version>[2.0.0-SAXONHE]</version>
59
		</dependency>
60

    
61
		<dependency>
62
			<groupId>eu.dnetlib</groupId>
63
			<artifactId>dnet-information-service</artifactId>
64
			<version>[2.0.0-SAXONHE]</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>eu.dnetlib</groupId>
68
			<artifactId>dnet-data-provision-services</artifactId>
69
			<version>[2.0.0-SAXONHE]</version>
70
		</dependency>	
71
		<dependency>
72
			<groupId>xerces</groupId>
73
			<artifactId>xercesImpl</artifactId>
74
			<version>2.11.0</version>
75
			<scope>compile</scope>
76
		</dependency>
77

    
78
		<!-- javamelody-core -->
79
		<dependency>
80
			<groupId>net.bull.javamelody</groupId>
81
			<artifactId>javamelody-core</artifactId>
82
			<version>1.65.0</version>
83
		</dependency>
84
		<!-- itext, option to add PDF export -->
85
		<dependency>
86
			<groupId>com.lowagie</groupId>
87
			<artifactId>itext</artifactId>
88
			<version>2.1.7</version>
89
			<exclusions>
90
				<exclusion>
91
					<artifactId>bcmail-jdk14</artifactId>
92
					<groupId>bouncycastle</groupId>
93
				</exclusion>
94
				<exclusion>
95
					<artifactId>bcprov-jdk14</artifactId>
96
					<groupId>bouncycastle</groupId>
97
				</exclusion>
98
				<exclusion>
99
					<artifactId>bctsp-jdk14</artifactId>
100
					<groupId>bouncycastle</groupId>
101
				</exclusion>
102
			</exclusions>
103
		</dependency>
104

    
105
	</dependencies>
106
</project>
(2-2/2)