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"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4

    
5
	<parent>
6
		<groupId>eu.dnetlib</groupId>
7
		<artifactId>dnet-container-parent</artifactId>
8
		<version>1.0.0-SNAPSHOT</version>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>uoa-madgik-validator</artifactId>
13
	<packaging>war</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15

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

    
20
	<dependencies>
21
		<dependency>
22
			<groupId>org.apache.struts</groupId>
23
			<artifactId>struts2-core</artifactId>
24
			<version>${struts2.version}</version>
25
			<exclusions>
26
				<exclusion>  <!-- declare the exclusion here -->
27
					<groupId>javax.servlet.jsp</groupId>
28
					<artifactId>jsp-api</artifactId>
29
				</exclusion>
30
			</exclusions>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.apache.struts</groupId>
34
			<artifactId>struts2-spring-plugin</artifactId>
35
			<version>${struts2.version}</version>
36
			<exclusions>
37
				<exclusion>
38
					<groupId>org.springframework</groupId>
39
					<artifactId>spring-beans</artifactId>
40
				</exclusion>
41
				<exclusion>
42
					<groupId>org.springframework</groupId>
43
					<artifactId>spring-core</artifactId>
44
				</exclusion>
45
				<exclusion>
46
					<groupId>org.springframework</groupId>
47
					<artifactId>spring-context</artifactId>
48
				</exclusion>
49
				<exclusion>
50
					<groupId>org.springframework</groupId>
51
					<artifactId>spring-web</artifactId>
52
				</exclusion>
53
			</exclusions>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.apache.struts</groupId>
57
			<artifactId>struts2-dojo-plugin</artifactId>
58
			<version>${struts2.version}</version>
59
		</dependency>
60

    
61
		<dependency>
62
			<groupId>eu.dnetlib</groupId>
63
			<artifactId>uoa-commons</artifactId>
64
			<version>[1.0.0-SNAPSHOT,)</version>
65
			<exclusions>
66
				<exclusion>
67
					<artifactId>cglib</artifactId>
68
					<groupId>cglib</groupId>
69
				</exclusion>
70
			</exclusions>
71
		</dependency>
72
		<dependency>
73
			<groupId>eu.dnetlib</groupId>
74
			<artifactId>uoa-hcm</artifactId>
75
			<version>[1.0.0-SNAPSHOT,)</version>
76
		</dependency>
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>uoa-validator</artifactId>
80
			<version>[1.0.0-SNAPSHOT,)</version>
81
		</dependency>
82
		<dependency>
83
			<groupId>eu.dnetlib</groupId>
84
			<artifactId>uoa-clients</artifactId>
85
			<version>[1.0.0-SNAPSHOT,)</version>
86
		</dependency>
87
		<dependency>
88
			<groupId>eu.dnetlib</groupId>
89
			<artifactId>uoa-utils</artifactId>
90
			<version>[1.0.0-SNAPSHOT,)</version>
91
		</dependency>
92
		<dependency>
93
			<groupId>eu.dnetlib</groupId>
94
			<artifactId>uoa-domain</artifactId>
95
			<version>[1.0.0-SNAPSHOT,)</version>
96
		</dependency>
97
		<dependency>
98
			<groupId>eu.dnetlib</groupId>
99
			<artifactId>dnet-runtime</artifactId>
100
			<version>[1.0.0-SNAPSHOT,)</version>
101
			<exclusions>
102
				<exclusion>  <!-- declare the exclusion here -->
103
					<groupId>org.apache.geronimo.specs</groupId>
104
					<artifactId>geronimo-javamail_1.4_spec</artifactId>
105
				</exclusion>
106
			</exclusions>
107
		</dependency>
108
		<!-- <dependency> -->
109
		<!-- <groupId>eu.dnetlib</groupId> -->
110
		<!-- <artifactId>dnet-openaireplus-datasource-manager-service</artifactId> -->
111
		<!-- <version>[0.0,1.0)</version> -->
112
		<!-- </dependency> -->
113
		<!-- <dependency> -->
114
		<!-- <groupId>eu.dnetlib</groupId> -->
115
		<!-- <artifactId>dnet-openaireplus-datasource-manager-rmi</artifactId> -->
116
		<!-- <version>[0.0,1.0)</version> -->
117
		<!-- </dependency> -->
118
		<!-- <dependency> -->
119
		<!-- <groupId>eu.dnetlib</groupId> -->
120
		<!-- <artifactId>uoa-resource-discovery</artifactId> -->
121
		<!-- <version>[0.0,1.0)</version> -->
122
		<!-- </dependency> -->
123
		<dependency>
124
			<groupId>se.kb</groupId>
125
			<artifactId>oai4j</artifactId>
126
			<version>[0.6b1,)</version>
127
		</dependency>
128
		<!-- <dependency> <groupId>ldapsdk</groupId> <artifactId>ldapsdk</artifactId> 
129
			<version>4.1</version> </dependency> -->
130
		<dependency>
131
			<groupId>com.unboundid</groupId>
132
			<artifactId>unboundid-ldapsdk</artifactId>
133
			<version>1.1.3</version>
134
		</dependency>
135

    
136
		<dependency>
137
			<groupId>org.slf4j</groupId>
138
			<artifactId>slf4j-api</artifactId>
139
			<version>1.7.5</version>
140
		</dependency>
141

    
142
		<dependency>
143
			<groupId>javax.mail</groupId>
144
			<artifactId>mail</artifactId>
145
			<version>1.4.7</version>
146
			<exclusions>
147
				<exclusion>
148
					<groupId>javax.activation</groupId>
149
					<artifactId>activation</artifactId>
150
				</exclusion>
151
			</exclusions>
152
		</dependency>
153
		<dependency>
154
			<groupId>cglib</groupId>
155
			<artifactId>cglib-nodep</artifactId>
156
			<version>2.2</version>
157
		</dependency>
158
		<dependency>
159
			<groupId>postgresql</groupId>
160
			<artifactId>postgresql</artifactId>
161
			<version>9.1-901.jdbc4</version>
162
		</dependency>
163
		<!-- <dependency> -->
164
		<!-- <groupId>org.tuckey</groupId> -->
165
		<!-- <artifactId>urlrewritefilter</artifactId> -->
166
		<!-- <version>4.0.3</version> -->
167
		<!-- </dependency> -->
168
		<!-- <dependency> -->
169
		<!-- <groupId>net.sf.ehcache</groupId> -->
170
		<!-- <artifactId>ehcache</artifactId> -->
171
		<!-- <version>2.8.0</version> -->
172
		<!-- </dependency> -->
173

    
174
		<!-- <dependency> -->
175
		<!-- <groupId>javax.servlet</groupId> -->
176
		<!-- <artifactId>servlet-api</artifactId> -->
177
		<!-- <version>2.5</version> -->
178
		<!-- <scope>compile</scope> -->
179
		<!-- </dependency> -->
180
	</dependencies>
181

    
182
</project>
(2-2/2)