Project

General

Profile

1
<?xml version="1.0" ?>
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>dnet-container-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-validator-web</artifactId>
11
	<packaging>war</packaging>
12
	<version>2.0.7</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-validator-web/tags/uoa-validator-web-2.0.7</developerConnection>
15
	</scm>
16

    
17
	<properties>
18
		<struts2.version>2.3.16.3</struts2.version>
19
	</properties>
20

    
21

    
22
	<dependencies>
23
		<dependency>
24
			<groupId>org.apache.struts</groupId>
25
			<artifactId>struts2-core</artifactId>
26
			<version>${struts2.version}</version>
27
			<exclusions>
28
				<exclusion>  <!-- declare the exclusion here -->
29
					<groupId>javax.servlet.jsp</groupId>
30
					<artifactId>jsp-api</artifactId>
31
				</exclusion>
32
			</exclusions>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.apache.struts</groupId>
36
			<artifactId>struts2-spring-plugin</artifactId>
37
			<version>${struts2.version}</version>
38
			<exclusions>
39
				<exclusion>
40
					<groupId>org.springframework</groupId>
41
					<artifactId>spring-beans</artifactId>
42
				</exclusion>
43
				<exclusion>
44
					<groupId>org.springframework</groupId>
45
					<artifactId>spring-core</artifactId>
46
				</exclusion>
47
				<exclusion>
48
					<groupId>org.springframework</groupId>
49
					<artifactId>spring-context</artifactId>
50
				</exclusion>
51
				<exclusion>
52
					<groupId>org.springframework</groupId>
53
					<artifactId>spring-web</artifactId>
54
				</exclusion>
55
			</exclusions>
56
		</dependency>
57
		<dependency>
58
			<groupId>org.apache.struts</groupId>
59
			<artifactId>struts2-dojo-plugin</artifactId>
60
			<version>${struts2.version}</version>
61
		</dependency>
62
		<dependency>
63
			<groupId>se.kb</groupId>
64
			<artifactId>oai4j</artifactId>
65
			<version>[0.6b1,)</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>eu.dnetlib</groupId>
69
			<artifactId>uoa-hcm</artifactId>
70
			<version>[1.1.0, 1.2.0-SNAPSHOT)</version>
71
		</dependency>
72
		<dependency>
73
			<groupId>eu.dnetlib</groupId>
74
			<artifactId>uoa-api</artifactId>
75
			<version>[1.1.0, 1.2.0-SNAPSHOT)</version>
76
		</dependency>
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>uoa-utils</artifactId>
80
			<version>[1.1.0, 1.2.0-SNAPSHOT)</version>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>uoa-commons</artifactId>
85
			<version>[1.1.0, 1.2.0-SNAPSHOT)</version>
86
			<exclusions>
87
				<exclusion>
88
					<artifactId>cglib</artifactId>
89
					<groupId>cglib</groupId>
90
				</exclusion>
91
			</exclusions>
92
		</dependency>
93
		<dependency>
94
			<groupId>eu.dnetlib</groupId>
95
			<artifactId>uoa-clients</artifactId>
96
			<version>[1.1.0, 1.2.0-SNAPSHOT)</version>
97
		</dependency>
98
		<dependency>
99
			<groupId>eu.dnetlib</groupId>
100
			<artifactId>dnet-runtime</artifactId>
101
			<version>[1.0.0]</version>
102
			<exclusions>
103
				<exclusion>  <!-- declare the exclusion here -->
104
					<groupId>org.apache.geronimo.specs</groupId>
105
					<artifactId>geronimo-javamail_1.4_spec</artifactId>
106
				</exclusion>
107
			</exclusions>
108
		</dependency>
109
		<dependency>
110
			<groupId>org.apache.poi</groupId>
111
			<artifactId>poi</artifactId>
112
			<version>3.9</version>
113
		</dependency>
114
		<dependency>
115
			<groupId>org.apache.poi</groupId>
116
			<artifactId>poi-ooxml</artifactId>
117
			<version>3.9</version>
118
		</dependency>
119
		<dependency>
120
			<groupId>net.sf.ehcache</groupId>
121
			<artifactId>ehcache</artifactId>
122
			<version>2.8.0</version>
123
		</dependency>
124
		<dependency>
125
			<groupId>com.unboundid</groupId>
126
			<artifactId>unboundid-ldapsdk</artifactId>
127
			<version>1.1.3</version>
128
		</dependency>
129
		<dependency>
130
			<groupId>javax.mail</groupId>
131
			<artifactId>mail</artifactId>
132
			<version>1.4.7</version>
133
			<exclusions>
134
				<exclusion>
135
					<groupId>javax.activation</groupId>
136
					<artifactId>activation</artifactId>
137
				</exclusion>
138
			</exclusions>
139
		</dependency>
140
		<!-- TEMPORARY -->
141
		<dependency>
142
            <groupId>eu.dnetlib</groupId>
143
            <artifactId>uoa-validator-commons</artifactId>
144
            <version>[2.0.0, 2.1.0-SNAPSHOT)</version>
145
        </dependency>
146
	</dependencies>
147
</project>
(2-2/2)