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-SNAPSHOT</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.1.0-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-validator-web/trunk</developerConnection>
15
	</scm>
16

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

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