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
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-madgik-validator/trunk</developerConnection>
17
	</scm>
18

    
19
	<properties>
20
		<struts2.version>2.3.16.3</struts2.version>
21
	</properties>
22

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

    
64
		<dependency>
65
			<groupId>eu.dnetlib</groupId>
66
			<artifactId>uoa-commons</artifactId>
67
			<version>[1.0.0-SNAPSHOT,)</version>
68
			<exclusions>
69
				<exclusion>
70
					<artifactId>cglib</artifactId>
71
					<groupId>cglib</groupId>
72
				</exclusion>
73
			</exclusions>
74
		</dependency>
75
		<dependency>
76
			<groupId>eu.dnetlib</groupId>
77
			<artifactId>uoa-hcm</artifactId>
78
			<version>[1.0.0-SNAPSHOT,)</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>eu.dnetlib</groupId>
82
			<artifactId>uoa-validator</artifactId>
83
			<version>[1.0.0-SNAPSHOT,)</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>eu.dnetlib</groupId>
87
			<artifactId>uoa-clients</artifactId>
88
			<version>[1.0.0-SNAPSHOT,)</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>eu.dnetlib</groupId>
92
			<artifactId>uoa-utils</artifactId>
93
			<version>[1.0.0-SNAPSHOT,)</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>eu.dnetlib</groupId>
97
			<artifactId>uoa-domain</artifactId>
98
			<version>[1.0.0-SNAPSHOT,)</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>eu.dnetlib</groupId>
102
			<artifactId>dnet-runtime</artifactId>
103
			<version>[1.0.0-SNAPSHOT,)</version>
104
			<exclusions>
105
				<exclusion>  <!-- declare the exclusion here -->
106
					<groupId>org.apache.geronimo.specs</groupId>
107
					<artifactId>geronimo-javamail_1.4_spec</artifactId>
108
				</exclusion>
109
			</exclusions>
110
		</dependency>
111
		<dependency>
112
			<groupId>se.kb</groupId>
113
			<artifactId>oai4j</artifactId>
114
			<version>[0.6b1,)</version>
115
		</dependency>
116
		<!-- <dependency> <groupId>ldapsdk</groupId> <artifactId>ldapsdk</artifactId> 
117
			<version>4.1</version> </dependency> -->
118
		<dependency>
119
			<groupId>com.unboundid</groupId>
120
			<artifactId>unboundid-ldapsdk</artifactId>
121
			<version>1.1.3</version>
122
		</dependency>
123
		<dependency>
124
			<groupId>org.slf4j</groupId>
125
			<artifactId>slf4j-api</artifactId>
126
			<version>1.7.5</version>
127
		</dependency>
128
		<dependency>
129
			<groupId>javax.mail</groupId>
130
			<artifactId>mail</artifactId>
131
			<version>1.4.7</version>
132
			<exclusions>
133
				<exclusion>
134
					<groupId>javax.activation</groupId>
135
					<artifactId>activation</artifactId>
136
				</exclusion>
137
			</exclusions>
138
		</dependency>
139
		<dependency>
140
			<groupId>cglib</groupId>
141
			<artifactId>cglib-nodep</artifactId>
142
			<version>2.2</version>
143
		</dependency>
144
		<dependency>
145
			<groupId>postgresql</groupId>
146
			<artifactId>postgresql</artifactId>
147
			<version>9.1-901.jdbc4</version>
148
		</dependency>
149
		<dependency>
150
			<groupId>org.apache.poi</groupId>
151
			<artifactId>poi</artifactId>
152
			<version>3.9</version>
153
		</dependency>
154
		<dependency>
155
			<groupId>org.apache.poi</groupId>
156
			<artifactId>poi-ooxml</artifactId>
157
			<version>3.9</version>
158
		</dependency>
159
		<!-- <dependency> -->
160
		<!-- <groupId>org.tuckey</groupId> -->
161
		<!-- <artifactId>urlrewritefilter</artifactId> -->
162
		<!-- <version>4.0.3</version> -->
163
		<!-- </dependency> -->
164
		<dependency>
165
			<groupId>net.sf.ehcache</groupId>
166
			<artifactId>ehcache</artifactId>
167
			<version>2.8.0</version>
168
		</dependency>
169

    
170
		<!-- <dependency> -->
171
		<!-- <groupId>javax.servlet</groupId> -->
172
		<!-- <artifactId>servlet-api</artifactId> -->
173
		<!-- <version>2.5</version> -->
174
		<!-- <scope>compile</scope> -->
175
		<!-- </dependency> -->
176
	</dependencies>
177

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