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
    </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-SNAPSHOT, 2.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-hcm</artifactId>
128
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
129
        </dependency>
130
        <dependency>
131
            <groupId>eu.dnetlib</groupId>
132
            <artifactId>uoa-api</artifactId>
133
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
134
        </dependency>
135
        <dependency>
136
            <groupId>eu.dnetlib</groupId>
137
            <artifactId>uoa-domain</artifactId>
138
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
139
            <exclusions>
140
                <exclusion>
141
                    <artifactId>cglib</artifactId>
142
                    <groupId>cglib</groupId>
143
                </exclusion>
144
            </exclusions>
145
        </dependency>
146
        <dependency>
147
            <groupId>eu.dnetlib</groupId>
148
            <artifactId>uoa-commons</artifactId>
149
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
150
            <exclusions>
151
                <exclusion>
152
                    <artifactId>cglib</artifactId>
153
                    <groupId>cglib</groupId>
154
                </exclusion>
155
            </exclusions>
156
        </dependency>
157
        <dependency>
158
            <groupId>eu.dnetlib</groupId>
159
            <artifactId>uoa-clients</artifactId>
160
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
161
        </dependency>
162

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

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

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

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

    
270
    </dependencies>
271

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

    
276
        <plugins>
277

    
278
            <plugin>
279
                <groupId>org.springframework.boot</groupId>
280
                <artifactId>spring-boot-maven-plugin</artifactId>
281
            </plugin>
282

    
283
            <!-- GWT Maven Plugin -->
284
            <plugin>
285
                <groupId>org.codehaus.mojo</groupId>
286
                <artifactId>gwt-maven-plugin</artifactId>
287
                <version>2.7.0</version>
288
                <executions>
289
                    <execution>
290
                        <goals>
291
                            <goal>compile</goal>
292
                            <goal>test</goal>
293
                            <goal>generateAsync</goal>
294
                        </goals>
295
                    </execution>
296
                </executions>
297
                <!-- Plugin configuration. There are many available options, see
298
                  gwt-maven-plugin documentation at codehaus.org -->
299
                <configuration>
300
                    <runTarget>RepositoryManager.html</runTarget>
301
                    <modules>
302
                        <module>eu.dnetlib.repo.manager.RepositoryManager</module>
303
                    </modules>
304
                </configuration>
305
            </plugin>
306
        </plugins>
307
    </build>
308

    
309
    <pluginRepositories>
310
        <pluginRepository>
311
            <id>spring-releases</id>
312
            <url>https://repo.spring.io/libs-release</url>
313
        </pluginRepository>
314
    </pluginRepositories>
315
</project>
(3-3/3)