1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project
|
3
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
4
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
5
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
6
|
|
7
|
<parent>
|
8
|
<groupId>eu.dnetlib</groupId>
|
9
|
<artifactId>dnet-container-parent</artifactId>
|
10
|
<version>1.0.0-SNAPSHOT</version>
|
11
|
</parent>
|
12
|
|
13
|
<modelVersion>4.0.0</modelVersion>
|
14
|
<groupId>eu.dnetlib</groupId>
|
15
|
<artifactId>uoa-repository-manager-gui</artifactId>
|
16
|
<packaging>war</packaging>
|
17
|
<version>1.0-SNAPSHOT</version>
|
18
|
<name>GWT Maven Archetype</name>
|
19
|
|
20
|
<properties>
|
21
|
<!-- Convenience property to set the GWT version -->
|
22
|
<gwtVersion>2.7.0</gwtVersion>
|
23
|
<!-- GWT needs at least java 1.6 -->
|
24
|
<maven.compiler.source>1.7</maven.compiler.source>
|
25
|
<maven.compiler.target>1.7</maven.compiler.target>
|
26
|
|
27
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
28
|
</properties>
|
29
|
|
30
|
<dependencyManagement>
|
31
|
<dependencies>
|
32
|
<dependency>
|
33
|
<groupId>com.google.gwt</groupId>
|
34
|
<artifactId>gwt</artifactId>
|
35
|
<version>${gwtVersion}</version>
|
36
|
<type>pom</type>
|
37
|
<scope>import</scope>
|
38
|
</dependency>
|
39
|
</dependencies>
|
40
|
</dependencyManagement>
|
41
|
|
42
|
<repositories>
|
43
|
<repository>
|
44
|
<id>sonatype-nexus-snapshots</id>
|
45
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
46
|
</repository>
|
47
|
<repository>
|
48
|
<id>gwt-crypto repo</id>
|
49
|
<url>http://gwt-crypto.googlecode.com/svn/trunk/repo/</url>
|
50
|
</repository>
|
51
|
<repository>
|
52
|
<id>gwt-recaptcha</id>
|
53
|
<url>http://gwt-recaptcha.googlecode.com/svn/repo</url>
|
54
|
</repository>
|
55
|
<repository>
|
56
|
<id>spring-releases</id>
|
57
|
<url>https://repo.spring.io/libs-release</url>
|
58
|
</repository>
|
59
|
</repositories>
|
60
|
|
61
|
<dependencies>
|
62
|
|
63
|
<dependency>
|
64
|
<groupId>com.google.gwt</groupId>
|
65
|
<artifactId>gwt-servlet</artifactId>
|
66
|
<scope>runtime</scope>
|
67
|
</dependency>
|
68
|
<dependency>
|
69
|
<groupId>com.google.gwt</groupId>
|
70
|
<artifactId>gwt-user</artifactId>
|
71
|
<scope>provided</scope>
|
72
|
</dependency>
|
73
|
<dependency>
|
74
|
<groupId>com.google.gwt</groupId>
|
75
|
<artifactId>gwt-dev</artifactId>
|
76
|
<scope>provided</scope>
|
77
|
</dependency>
|
78
|
<dependency>
|
79
|
<groupId>junit</groupId>
|
80
|
<artifactId>junit</artifactId>
|
81
|
<version>4.11</version>
|
82
|
<scope>test</scope>
|
83
|
</dependency>
|
84
|
|
85
|
<dependency>
|
86
|
<groupId>org.gwtbootstrap3</groupId>
|
87
|
<artifactId>gwtbootstrap3</artifactId>
|
88
|
<version>1.0-SNAPSHOT</version>
|
89
|
</dependency>
|
90
|
<dependency>
|
91
|
<groupId>org.gwtbootstrap3</groupId>
|
92
|
<artifactId>gwtbootstrap3-extras</artifactId>
|
93
|
<version>1.0-SNAPSHOT</version>
|
94
|
<scope>provided</scope>
|
95
|
</dependency>
|
96
|
|
97
|
<dependency>
|
98
|
<groupId>log4j</groupId>
|
99
|
<artifactId>log4j</artifactId>
|
100
|
<version>(1.2, 1.5]</version>
|
101
|
<scope>compile</scope>
|
102
|
</dependency>
|
103
|
<dependency>
|
104
|
<groupId>postgresql</groupId>
|
105
|
<artifactId>postgresql</artifactId>
|
106
|
<version>9.1-901.jdbc4</version>
|
107
|
</dependency>
|
108
|
|
109
|
|
110
|
<dependency>
|
111
|
<groupId>eu.dnetlib</groupId>
|
112
|
<artifactId>dnet-runtime</artifactId>
|
113
|
<version>[1.0.0]</version>
|
114
|
<exclusions>
|
115
|
<exclusion> <!-- declare the exclusion here -->
|
116
|
<groupId>org.apache.geronimo.specs</groupId>
|
117
|
<artifactId>geronimo-javamail_1.4_spec</artifactId>
|
118
|
</exclusion>
|
119
|
<exclusion> <!-- declare the exclusion here -->
|
120
|
<groupId>com.sun.xml.bind</groupId>
|
121
|
<artifactId>jaxb-impl</artifactId>
|
122
|
</exclusion>
|
123
|
</exclusions>
|
124
|
</dependency>
|
125
|
<dependency>
|
126
|
<groupId>eu.dnetlib</groupId>
|
127
|
<artifactId>uoa-utils</artifactId>
|
128
|
<version>[1.2.0-SNAPSHOT, )</version>
|
129
|
</dependency>
|
130
|
<dependency>
|
131
|
<groupId>eu.dnetlib</groupId>
|
132
|
<artifactId>uoa-domain</artifactId>
|
133
|
<version>[1.2.0-SNAPSHOT, )</version>
|
134
|
</dependency>
|
135
|
<dependency>
|
136
|
<groupId>eu.dnetlib</groupId>
|
137
|
<artifactId>uoa-commons</artifactId>
|
138
|
<version>[1.2.0-SNAPSHOT, )</version>
|
139
|
</dependency>
|
140
|
<dependency>
|
141
|
<groupId>eu.dnetlib</groupId>
|
142
|
<artifactId>uoa-clients</artifactId>
|
143
|
<version>[1.2.0-SNAPSHOT, )</version>
|
144
|
</dependency>
|
145
|
<dependency>
|
146
|
<groupId>eu.dnetlib</groupId>
|
147
|
<artifactId>uoa-hcm</artifactId>
|
148
|
<version>[1.2.0-SNAPSHOT, )</version>
|
149
|
</dependency>
|
150
|
|
151
|
<dependency>
|
152
|
<groupId>com.googlecode.gwt-crypto</groupId>
|
153
|
<artifactId>gwt-crypto</artifactId>
|
154
|
<version>2.3.0</version>
|
155
|
</dependency>
|
156
|
<dependency>
|
157
|
<groupId>com.googlecode.gwtquery</groupId>
|
158
|
<artifactId>gwtquery</artifactId>
|
159
|
<version>1.4.3</version>
|
160
|
<scope>compile</scope>
|
161
|
</dependency>
|
162
|
<dependency>
|
163
|
<groupId>commons-fileupload</groupId>
|
164
|
<artifactId>commons-fileupload</artifactId>
|
165
|
<version>1.3</version>
|
166
|
</dependency>
|
167
|
<dependency>
|
168
|
<groupId>commons-io</groupId>
|
169
|
<artifactId>commons-io</artifactId>
|
170
|
<version>2.4</version>
|
171
|
</dependency>
|
172
|
<dependency>
|
173
|
<groupId>com.claudiushauptmann</groupId>
|
174
|
<artifactId>gwt-recaptcha</artifactId>
|
175
|
<version>1.0.0.Beta2</version>
|
176
|
</dependency>
|
177
|
<dependency>
|
178
|
<groupId>com.google.code.maven-play-plugin.net.tanesha.recaptcha4j</groupId>
|
179
|
<artifactId>recaptcha4j</artifactId>
|
180
|
<version>0.0.8</version>
|
181
|
</dependency>
|
182
|
<dependency>
|
183
|
<groupId>javax.mail</groupId>
|
184
|
<artifactId>mail</artifactId>
|
185
|
<version>1.4.7</version>
|
186
|
<exclusions>
|
187
|
<exclusion>
|
188
|
<groupId>javax.activation</groupId>
|
189
|
<artifactId>activation</artifactId>
|
190
|
</exclusion>
|
191
|
</exclusions>
|
192
|
</dependency>
|
193
|
<dependency>
|
194
|
<groupId>se.kb</groupId>
|
195
|
<artifactId>oai4j</artifactId>
|
196
|
<version>[0.6b1,)</version>
|
197
|
</dependency>
|
198
|
<dependency>
|
199
|
<groupId>xalan</groupId>
|
200
|
<artifactId>xalan</artifactId>
|
201
|
<version>2.7.2</version>
|
202
|
</dependency>
|
203
|
<dependency>
|
204
|
<groupId>xerces</groupId>
|
205
|
<artifactId>xercesImpl</artifactId>
|
206
|
<version>2.11.0</version>
|
207
|
</dependency>
|
208
|
|
209
|
<dependency>
|
210
|
<groupId>eu.dnetlib.gwt</groupId>
|
211
|
<artifactId>uoa-gwt-widgets</artifactId>
|
212
|
<version>1.0-SNAPSHOT</version>
|
213
|
</dependency>
|
214
|
|
215
|
<dependency>
|
216
|
<groupId>org.springframework</groupId>
|
217
|
<artifactId>spring-aop</artifactId>
|
218
|
<version>${spring.version}</version>
|
219
|
</dependency>
|
220
|
<dependency>
|
221
|
<groupId>com.fasterxml.jackson.core</groupId>
|
222
|
<artifactId>jackson-core</artifactId>
|
223
|
<version>2.5.1</version>
|
224
|
<scope>compile</scope>
|
225
|
</dependency>
|
226
|
<dependency>
|
227
|
<groupId>com.fasterxml.jackson.core</groupId>
|
228
|
<artifactId>jackson-databind</artifactId>
|
229
|
<version>2.5.1</version>
|
230
|
<scope>compile</scope>
|
231
|
</dependency>
|
232
|
<dependency>
|
233
|
<groupId>org.aspectj</groupId>
|
234
|
<artifactId>aspectjweaver</artifactId>
|
235
|
<version>1.7.3</version>
|
236
|
</dependency>
|
237
|
|
238
|
</dependencies>
|
239
|
|
240
|
<build>
|
241
|
<!-- Output classes directly into the webapp, so that IDEs and "mvn process-classes" update them in DevMode -->
|
242
|
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
|
243
|
|
244
|
<plugins>
|
245
|
|
246
|
<plugin>
|
247
|
<groupId>org.springframework.boot</groupId>
|
248
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
249
|
</plugin>
|
250
|
|
251
|
<!-- GWT Maven Plugin -->
|
252
|
<plugin>
|
253
|
<groupId>org.codehaus.mojo</groupId>
|
254
|
<artifactId>gwt-maven-plugin</artifactId>
|
255
|
<version>2.7.0</version>
|
256
|
<executions>
|
257
|
<execution>
|
258
|
<goals>
|
259
|
<goal>compile</goal>
|
260
|
<goal>test</goal>
|
261
|
<goal>generateAsync</goal>
|
262
|
</goals>
|
263
|
</execution>
|
264
|
</executions>
|
265
|
<!-- Plugin configuration. There are many available options, see
|
266
|
gwt-maven-plugin documentation at codehaus.org -->
|
267
|
<configuration>
|
268
|
<runTarget>RepositoryManager.html</runTarget>
|
269
|
<modules>
|
270
|
<module>eu.dnetlib.repo.manager.RepositoryManager</module>
|
271
|
</modules>
|
272
|
</configuration>
|
273
|
</plugin>
|
274
|
</plugins>
|
275
|
</build>
|
276
|
|
277
|
<pluginRepositories>
|
278
|
<pluginRepository>
|
279
|
<id>spring-releases</id>
|
280
|
<url>https://repo.spring.io/libs-release</url>
|
281
|
</pluginRepository>
|
282
|
</pluginRepositories>
|
283
|
</project>
|