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

    
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-container-parent</artifactId>
7
		<version>1.0.0</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>uoa-madgik-validator</artifactId>
12
	<packaging>war</packaging>
13
	<version>1.0.3</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-madgik-validator/branches/uoa-madgik-validator-1.0</developerConnection>
16
	</scm>
17

    
18
	<properties>
19
		<struts2.version>2.3.16.3</struts2.version>
20
	</properties>
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

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

    
164
		<!-- <dependency> -->
165
		<!-- <groupId>javax.servlet</groupId> -->
166
		<!-- <artifactId>servlet-api</artifactId> -->
167
		<!-- <version>2.5</version> -->
168
		<!-- <scope>compile</scope> -->
169
		<!-- </dependency> -->
170
	</dependencies>
171

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