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>se.kb</groupId>
110
			<artifactId>oai4j</artifactId>
111
			<version>[0.6b1,)</version>
112
		</dependency>
113
		<!-- <dependency> <groupId>ldapsdk</groupId> <artifactId>ldapsdk</artifactId> 
114
			<version>4.1</version> </dependency> -->
115
		<dependency>
116
			<groupId>com.unboundid</groupId>
117
			<artifactId>unboundid-ldapsdk</artifactId>
118
			<version>1.1.3</version>
119
		</dependency>
120
		<dependency>
121
			<groupId>org.slf4j</groupId>
122
			<artifactId>slf4j-api</artifactId>
123
			<version>1.7.5</version>
124
		</dependency>
125
		<dependency>
126
			<groupId>javax.mail</groupId>
127
			<artifactId>mail</artifactId>
128
			<version>1.4.7</version>
129
			<exclusions>
130
				<exclusion>
131
					<groupId>javax.activation</groupId>
132
					<artifactId>activation</artifactId>
133
				</exclusion>
134
			</exclusions>
135
		</dependency>
136
		<dependency>
137
			<groupId>cglib</groupId>
138
			<artifactId>cglib-nodep</artifactId>
139
			<version>2.2</version>
140
		</dependency>
141
		<dependency>
142
			<groupId>postgresql</groupId>
143
			<artifactId>postgresql</artifactId>
144
			<version>9.1-901.jdbc4</version>
145
		</dependency>
146
		<!-- <dependency> -->
147
		<!-- <groupId>org.tuckey</groupId> -->
148
		<!-- <artifactId>urlrewritefilter</artifactId> -->
149
		<!-- <version>4.0.3</version> -->
150
		<!-- </dependency> -->
151
		<dependency>
152
		<groupId>net.sf.ehcache</groupId>
153
		<artifactId>ehcache</artifactId>
154
		<version>2.8.0</version>
155
		</dependency>
156

    
157
		<!-- <dependency> -->
158
		<!-- <groupId>javax.servlet</groupId> -->
159
		<!-- <artifactId>servlet-api</artifactId> -->
160
		<!-- <version>2.5</version> -->
161
		<!-- <scope>compile</scope> -->
162
		<!-- </dependency> -->
163
	</dependencies>
164

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