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>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>0.9.2</version>
89
        </dependency>
90
        <dependency>
91
            <groupId>log4j</groupId>
92
            <artifactId>log4j</artifactId>
93
            <version>(1.2, 1.5]</version>
94
            <scope>compile</scope>
95
        </dependency>
96
        <dependency>
97
            <groupId>eu.dnetlib</groupId>
98
            <artifactId>dnet-runtime</artifactId>
99
            <version>[1.0.0]</version>
100
            <exclusions>
101
                <exclusion>  <!-- declare the exclusion here -->
102
                    <groupId>org.apache.geronimo.specs</groupId>
103
                    <artifactId>geronimo-javamail_1.4_spec</artifactId>
104
                </exclusion>
105
                <exclusion>  <!-- declare the exclusion here -->
106
                    <groupId>com.sun.xml.bind</groupId>
107
                    <artifactId>jaxb-impl</artifactId>
108
                </exclusion>
109
            </exclusions>
110
        </dependency>
111
        <dependency>
112
            <groupId>eu.dnetlib</groupId>
113
            <artifactId>uoa-utils</artifactId>
114
            <version>[1.2.0-SNAPSHOT, )</version>
115
        </dependency>
116
        <dependency>
117
            <groupId>eu.dnetlib</groupId>
118
            <artifactId>uoa-commons</artifactId>
119
            <version>[1.2.0-SNAPSHOT, )</version>
120
        </dependency>
121
        <dependency>
122
            <groupId>eu.dnetlib</groupId>
123
            <artifactId>uoa-clients</artifactId>
124
            <version>[1.2.0-SNAPSHOT, )</version>
125
        </dependency>
126
        <dependency>
127
            <groupId>eu.dnetlib</groupId>
128
            <artifactId>uoa-hcm</artifactId>
129
            <version>[1.2.0-SNAPSHOT, )</version>
130
        </dependency>
131

    
132
        <dependency>
133
            <groupId>com.googlecode.gwt-crypto</groupId>
134
            <artifactId>gwt-crypto</artifactId>
135
            <version>2.3.0</version>
136
        </dependency>
137
        <dependency>
138
            <groupId>com.googlecode.gwtquery</groupId>
139
            <artifactId>gwtquery</artifactId>
140
            <version>1.4.3</version>
141
            <scope>compile</scope>
142
        </dependency>
143
        <dependency>
144
            <groupId>commons-fileupload</groupId>
145
            <artifactId>commons-fileupload</artifactId>
146
            <version>1.3</version>
147
        </dependency>
148
        <dependency>
149
            <groupId>commons-io</groupId>
150
            <artifactId>commons-io</artifactId>
151
            <version>2.4</version>
152
        </dependency>
153
        <dependency>
154
            <groupId>com.claudiushauptmann</groupId>
155
            <artifactId>gwt-recaptcha</artifactId>
156
            <version>1.0.0.Beta2</version>
157
        </dependency>
158
        <dependency>
159
            <groupId>com.google.code.maven-play-plugin.net.tanesha.recaptcha4j</groupId>
160
            <artifactId>recaptcha4j</artifactId>
161
            <version>0.0.8</version>
162
        </dependency>
163
        <dependency>
164
            <groupId>javax.mail</groupId>
165
            <artifactId>mail</artifactId>
166
            <version>1.4.7</version>
167
            <exclusions>
168
                <exclusion>
169
                    <groupId>javax.activation</groupId>
170
                    <artifactId>activation</artifactId>
171
                </exclusion>
172
            </exclusions>
173
        </dependency>
174

    
175

    
176
    </dependencies>
177

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

    
182
        <plugins>
183

    
184
            <plugin>
185
                <groupId>org.springframework.boot</groupId>
186
                <artifactId>spring-boot-maven-plugin</artifactId>
187
            </plugin>
188

    
189
            <!-- GWT Maven Plugin -->
190
            <plugin>
191
                <groupId>org.codehaus.mojo</groupId>
192
                <artifactId>gwt-maven-plugin</artifactId>
193
                <version>2.7.0</version>
194
                <executions>
195
                    <execution>
196
                        <goals>
197
                            <goal>compile</goal>
198
                            <goal>test</goal>
199
                            <goal>generateAsync</goal>
200
                        </goals>
201
                    </execution>
202
                </executions>
203
                <!-- Plugin configuration. There are many available options, see
204
                  gwt-maven-plugin documentation at codehaus.org -->
205
                <configuration>
206
                    <runTarget>RepositoryManager.html</runTarget>
207
                    <modules>
208
                        <module>eu.dnetlib.repo.manager.RepositoryManager</module>
209
                    </modules>
210
                </configuration>
211
            </plugin>
212
        </plugins>
213
    </build>
214

    
215
    <pluginRepositories>
216
        <pluginRepository>
217
            <id>spring-releases</id>
218
            <url>https://repo.spring.io/libs-release</url>
219
        </pluginRepository>
220
    </pluginRepositories>
221
</project>
    (1-1/1)