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-SNAPSHOT</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>1.0.0-SNAPSHOT</version>
15
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/webapps/dnet-parthenos-container/trunk</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>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
47
		</dependency>
48

    
49
		<dependency>
50
			<groupId>eu.dnetlib</groupId>
51
			<artifactId>dnet-data-services</artifactId>
52
			<version>[2.0.0-SAXONHE-SNAPSHOT, 2.0.1-SAXONHE-SOLR772-SNAPSHOT)</version>
53
		</dependency>
54

    
55
		<dependency>
56
			<groupId>eu.dnetlib</groupId>
57
			<artifactId>dnet-modular-uis</artifactId>
58
			<version>[2.0.0-SAXONHE-SNAPSHOT, 2.0.1-SAXONHE-SOLR772-SNAPSHOT)</version>
59
		</dependency>
60

    
61
		<dependency>
62
			<groupId>eu.dnetlib</groupId>
63
			<artifactId>dnet-information-service</artifactId>
64
			<version>[2.0.0-SAXONHE-SNAPSHOT, 2.0.1-SAXONHE-SOLR772-SNAPSHOT)</version>
65
			<exclusions>
66
				<exclusion>
67
					<groupId>org.apache.logging.log4j</groupId>
68
					<artifactId>log4j-slf4j-impl</artifactId>
69
				</exclusion>
70
			</exclusions>
71
		</dependency>
72
		<dependency>
73
			<groupId>eu.dnetlib</groupId>
74
			<artifactId>dnet-data-provision-services</artifactId>
75
			<version>[2.0.0-SAXONHE-SNAPSHOT, 2.0.1-SAXONHE-SOLR-772-SNAPSHOT)</version>
76
		</dependency>	
77
		<dependency>
78
			<groupId>xerces</groupId>
79
			<artifactId>xercesImpl</artifactId>
80
			<version>2.11.0</version>
81
			<scope>compile</scope>
82
		</dependency>
83

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

    
111
		<dependency>
112
			<groupId>org.slf4j</groupId>
113
			<artifactId>slf4j-log4j12</artifactId>
114
			<version>[1.6.4]</version>
115
		</dependency>
116

    
117
	</dependencies>
118
</project>
    (1-1/1)