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>dnet45-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>3.0.0-SNAPSHOT</version>
|
13
|
<scm>
|
14
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-validator-web/trunk</developerConnection>
|
15
|
</scm>
|
16
|
|
17
|
<properties>
|
18
|
<struts2.version>2.3.32</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
|
<exclusions>
|
66
|
<exclusion>
|
67
|
<groupId>xerces</groupId>
|
68
|
<artifactId>xercesImpl</artifactId>
|
69
|
</exclusion>
|
70
|
<exclusion>
|
71
|
<groupId>xalan</groupId>
|
72
|
<artifactId>xalan</artifactId>
|
73
|
</exclusion>
|
74
|
<exclusion>
|
75
|
<groupId>xml-apis</groupId>
|
76
|
<artifactId>xml-apis</artifactId>
|
77
|
</exclusion>
|
78
|
</exclusions>
|
79
|
</dependency>
|
80
|
<dependency>
|
81
|
<groupId>eu.dnetlib</groupId>
|
82
|
<artifactId>uoa-hcm</artifactId>
|
83
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
84
|
</dependency>
|
85
|
<dependency>
|
86
|
<groupId>eu.dnetlib</groupId>
|
87
|
<artifactId>uoa-api</artifactId>
|
88
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
89
|
</dependency>
|
90
|
<dependency>
|
91
|
<groupId>eu.dnetlib</groupId>
|
92
|
<artifactId>uoa-domain</artifactId>
|
93
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
94
|
</dependency>
|
95
|
<dependency>
|
96
|
<groupId>eu.dnetlib</groupId>
|
97
|
<artifactId>uoa-commons</artifactId>
|
98
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
99
|
<exclusions>
|
100
|
<exclusion>
|
101
|
<artifactId>cglib</artifactId>
|
102
|
<groupId>cglib</groupId>
|
103
|
</exclusion>
|
104
|
</exclusions>
|
105
|
</dependency>
|
106
|
<dependency>
|
107
|
<groupId>eu.dnetlib</groupId>
|
108
|
<artifactId>uoa-clients</artifactId>
|
109
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
110
|
</dependency>
|
111
|
<dependency>
|
112
|
<groupId>com.google.gwt</groupId>
|
113
|
<artifactId>gwt-user</artifactId>
|
114
|
<version>2.7.0</version>
|
115
|
</dependency>
|
116
|
<dependency>
|
117
|
<groupId>eu.dnetlib</groupId>
|
118
|
<artifactId>dnet-runtime</artifactId>
|
119
|
<version>[1.0.0-SNAPSHOT, 2.0.0)</version>
|
120
|
<exclusions>
|
121
|
<exclusion> <!-- declare the exclusion here -->
|
122
|
<groupId>org.apache.geronimo.specs</groupId>
|
123
|
<artifactId>geronimo-javamail_1.4_spec</artifactId>
|
124
|
</exclusion>
|
125
|
</exclusions>
|
126
|
</dependency>
|
127
|
<dependency>
|
128
|
<groupId>org.apache.poi</groupId>
|
129
|
<artifactId>poi</artifactId>
|
130
|
<version>3.9</version>
|
131
|
</dependency>
|
132
|
<dependency>
|
133
|
<groupId>org.apache.poi</groupId>
|
134
|
<artifactId>poi-ooxml</artifactId>
|
135
|
<version>3.9</version>
|
136
|
</dependency>
|
137
|
<dependency>
|
138
|
<groupId>javax.mail</groupId>
|
139
|
<artifactId>mail</artifactId>
|
140
|
<version>1.4.7</version>
|
141
|
<exclusions>
|
142
|
<exclusion>
|
143
|
<groupId>javax.activation</groupId>
|
144
|
<artifactId>activation</artifactId>
|
145
|
</exclusion>
|
146
|
</exclusions>
|
147
|
</dependency>
|
148
|
<!-- TEMPORARY -->
|
149
|
<dependency>
|
150
|
<groupId>eu.dnetlib</groupId>
|
151
|
<artifactId>uoa-validator-commons</artifactId>
|
152
|
<version>[3.0.0-SNAPSHOT, 3.0.0)</version>
|
153
|
</dependency>
|
154
|
</dependencies>
|
155
|
</project>
|