Project

General

Profile

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>dnet45-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>3.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

    
60
    </repositories>
61

    
62
    <dependencies>
63

    
64
        <dependency>
65
            <groupId>com.google.gwt</groupId>
66
            <artifactId>gwt-servlet</artifactId>
67
            <scope>runtime</scope>
68
        </dependency>
69
        <dependency>
70
            <groupId>com.google.gwt</groupId>
71
            <artifactId>gwt-user</artifactId>
72
            <scope>provided</scope>
73
        </dependency>
74
        <dependency>
75
            <groupId>com.google.gwt</groupId>
76
            <artifactId>gwt-dev</artifactId>
77
            <scope>provided</scope>
78
        </dependency>
79
        <dependency>
80
            <groupId>junit</groupId>
81
            <artifactId>junit</artifactId>
82
            <version>4.11</version>
83
            <scope>test</scope>
84
        </dependency>
85

    
86
        <dependency>
87
            <groupId>org.gwtbootstrap3</groupId>
88
            <artifactId>gwtbootstrap3</artifactId>
89
            <version>1.0-SNAPSHOT</version>
90
        </dependency>
91
        <dependency>
92
            <groupId>org.gwtbootstrap3</groupId>
93
            <artifactId>gwtbootstrap3-extras</artifactId>
94
            <version>1.0-SNAPSHOT</version>
95
            <scope>provided</scope>
96
        </dependency>
97

    
98
        <dependency>
99
            <groupId>log4j</groupId>
100
            <artifactId>log4j</artifactId>
101
            <version>(1.2, 1.5]</version>
102
            <scope>compile</scope>
103
        </dependency>
104
        <dependency>
105
            <groupId>postgresql</groupId>
106
            <artifactId>postgresql</artifactId>
107
            <version>9.1-901.jdbc4</version>
108
        </dependency>
109

    
110

    
111
        <dependency>
112
            <groupId>eu.dnetlib</groupId>
113
            <artifactId>dnet-runtime</artifactId>
114
            <version>[1.0.0-SNAPSHOT, 2.0.0)</version>
115
            <exclusions>
116
                <exclusion>  <!-- declare the exclusion here -->
117
                    <groupId>org.apache.geronimo.specs</groupId>
118
                    <artifactId>geronimo-javamail_1.4_spec</artifactId>
119
                </exclusion>
120
                <exclusion>  <!-- declare the exclusion here -->
121
                    <groupId>com.sun.xml.bind</groupId>
122
                    <artifactId>jaxb-impl</artifactId>
123
                </exclusion>
124
            </exclusions>
125
        </dependency>
126
        <dependency>
127
            <groupId>eu.dnetlib</groupId>
128
            <artifactId>uoa-hcm</artifactId>
129
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
130
        </dependency>
131
        <dependency>
132
            <groupId>eu.dnetlib</groupId>
133
            <artifactId>uoa-api</artifactId>
134
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
135
        </dependency>
136
        <dependency>
137
            <groupId>eu.dnetlib</groupId>
138
            <artifactId>uoa-domain</artifactId>
139
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
140
            <exclusions>
141
                <exclusion>
142
                    <artifactId>cglib</artifactId>
143
                    <groupId>cglib</groupId>
144
                </exclusion>
145
            </exclusions>
146
        </dependency>
147
        <dependency>
148
            <groupId>eu.dnetlib</groupId>
149
            <artifactId>uoa-commons</artifactId>
150
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
151
            <exclusions>
152
                <exclusion>
153
                    <artifactId>cglib</artifactId>
154
                    <groupId>cglib</groupId>
155
                </exclusion>
156
            </exclusions>
157
        </dependency>
158
        <dependency>
159
            <groupId>eu.dnetlib</groupId>
160
            <artifactId>uoa-clients</artifactId>
161
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
162
        </dependency>
163

    
164
        <dependency>
165
            <groupId>cglib</groupId>
166
            <artifactId>cglib-nodep</artifactId>
167
            <version>2.2</version>
168
        </dependency>
169

    
170
        <dependency>
171
            <groupId>com.googlecode.gwt-crypto</groupId>
172
            <artifactId>gwt-crypto</artifactId>
173
            <version>2.3.0</version>
174
        </dependency>
175
        <dependency>
176
            <groupId>com.googlecode.gwtquery</groupId>
177
            <artifactId>gwtquery</artifactId>
178
            <version>1.4.3</version>
179
            <scope>compile</scope>
180
        </dependency>
181
        <dependency>
182
            <groupId>commons-fileupload</groupId>
183
            <artifactId>commons-fileupload</artifactId>
184
            <version>1.3</version>
185
        </dependency>
186
        <dependency>
187
            <groupId>commons-io</groupId>
188
            <artifactId>commons-io</artifactId>
189
            <version>2.4</version>
190
        </dependency>
191
        <dependency>
192
            <groupId>com.claudiushauptmann</groupId>
193
            <artifactId>gwt-recaptcha</artifactId>
194
            <version>1.0.0.Beta2</version>
195
        </dependency>
196
        <dependency>
197
            <groupId>com.google.code.maven-play-plugin.net.tanesha.recaptcha4j</groupId>
198
            <artifactId>recaptcha4j</artifactId>
199
            <version>0.0.8</version>
200
        </dependency>
201
        <dependency>
202
            <groupId>javax.mail</groupId>
203
            <artifactId>mail</artifactId>
204
            <version>1.4.7</version>
205
            <exclusions>
206
                <exclusion>
207
                    <groupId>javax.activation</groupId>
208
                    <artifactId>activation</artifactId>
209
                </exclusion>
210
            </exclusions>
211
        </dependency>
212
        <dependency>
213
            <groupId>se.kb</groupId>
214
            <artifactId>oai4j</artifactId>
215
            <version>[0.6b1,)</version>
216
            <exclusions>
217
                <exclusion>
218
                    <groupId>xerces</groupId>
219
                    <artifactId>xercesImpl</artifactId>
220
                </exclusion>
221
                <exclusion>
222
                    <groupId>xalan</groupId>
223
                    <artifactId>xalan</artifactId>
224
                </exclusion>
225
                <exclusion>
226
                    <groupId>xml-apis</groupId>
227
                    <artifactId>xml-apis</artifactId>
228
                </exclusion>
229
            </exclusions>
230
        </dependency>
231
        <dependency>
232
            <groupId>xalan</groupId>
233
            <artifactId>xalan</artifactId>
234
            <version>2.7.2</version>
235
        </dependency>
236
        <dependency>
237
            <groupId>xerces</groupId>
238
            <artifactId>xercesImpl</artifactId>
239
            <version>2.11.0</version>
240
        </dependency>
241

    
242
        <dependency>
243
            <groupId>eu.dnetlib.gwt</groupId>
244
            <artifactId>uoa-gwt-widgets</artifactId>
245
            <version>3.0-SNAPSHOT</version>
246
        </dependency>
247

    
248
        <dependency>
249
            <groupId>org.springframework</groupId>
250
            <artifactId>spring-aop</artifactId>
251
            <version>${spring.version}</version>
252
        </dependency>
253
        <dependency>
254
            <groupId>com.fasterxml.jackson.core</groupId>
255
            <artifactId>jackson-core</artifactId>
256
            <version>2.5.1</version>
257
            <scope>compile</scope>
258
        </dependency>
259
        <dependency>
260
            <groupId>com.fasterxml.jackson.core</groupId>
261
            <artifactId>jackson-databind</artifactId>
262
            <version>2.5.1</version>
263
            <scope>compile</scope>
264
        </dependency>
265
        <dependency>
266
            <groupId>org.aspectj</groupId>
267
            <artifactId>aspectjweaver</artifactId>
268
            <version>1.7.3</version>
269
        </dependency>
270

    
271

    
272
        <dependency>
273
            <groupId>eu.dnetlib</groupId>
274
            <artifactId>uoa-repository-manager-service</artifactId>
275
            <version>1.0.0-SNAPSHOT</version>
276
        </dependency>
277

    
278

    
279
        <dependency>
280
            <groupId>org.mitre</groupId>
281
            <artifactId>openid-connect-client</artifactId>
282
            <version>1.3.0</version>
283
            <exclusions>
284
                <exclusion>
285
                    <groupId>org.slf4j</groupId>
286
                    <artifactId>jcl-over-slf4j</artifactId>
287
                </exclusion>
288
            </exclusions>
289
        </dependency>
290

    
291
    </dependencies>
292

    
293

    
294
    <build>
295
        <!-- Output classes directly into the webapp, so that IDEs and "mvn process-classes" update them in DevMode -->
296
        <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
297

    
298
        <plugins>
299

    
300
            <plugin>
301
                <groupId>org.springframework.boot</groupId>
302
                <artifactId>spring-boot-maven-plugin</artifactId>
303
            </plugin>
304

    
305
            <!-- GWT Maven Plugin -->
306
            <plugin>
307
                <groupId>org.codehaus.mojo</groupId>
308
                <artifactId>gwt-maven-plugin</artifactId>
309
                <version>2.7.0</version>
310
                <executions>
311
                    <execution>
312
                        <goals>
313
                            <goal>compile</goal>
314
                            <goal>test</goal>
315
                            <goal>generateAsync</goal>
316
                        </goals>
317
                    </execution>
318
                </executions>
319
                <!-- Plugin configuration. There are many available options, see
320
                  gwt-maven-plugin documentation at codehaus.org -->
321
                <configuration>
322
                    <runTarget>RepositoryManager.html</runTarget>
323
                    <modules>
324
                        <module>eu.dnetlib.repo.manager.RepositoryManager</module>
325
                    </modules>
326
                </configuration>
327
            </plugin>
328
        </plugins>
329
    </build>
330

    
331
    <pluginRepositories>
332
        <pluginRepository>
333
            <id>spring-releases</id>
334
            <url>https://repo.spring.io/libs-release</url>
335
        </pluginRepository>
336
    </pluginRepositories>
337
</project>
(3-3/3)