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.gwt</groupId>
|
15
|
<artifactId>uoa-gwt-widgets</artifactId>
|
16
|
<packaging>jar</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
|
|
24
|
<!-- GWT needs at least java 1.6 -->
|
25
|
<maven.compiler.source>1.7</maven.compiler.source>
|
26
|
<maven.compiler.target>1.7</maven.compiler.target>
|
27
|
|
28
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
29
|
</properties>
|
30
|
|
31
|
<dependencyManagement>
|
32
|
<dependencies>
|
33
|
<dependency>
|
34
|
<groupId>com.google.gwt</groupId>
|
35
|
<artifactId>gwt</artifactId>
|
36
|
<version>${gwtVersion}</version>
|
37
|
<type>pom</type>
|
38
|
<scope>import</scope>
|
39
|
</dependency>
|
40
|
</dependencies>
|
41
|
</dependencyManagement>
|
42
|
|
43
|
<repositories>
|
44
|
<repository>
|
45
|
<id>spring-releases</id>
|
46
|
<url>https://repo.spring.io/libs-release</url>
|
47
|
</repository>
|
48
|
</repositories>
|
49
|
|
50
|
<dependencies>
|
51
|
<dependency>
|
52
|
<groupId>com.google.gwt</groupId>
|
53
|
<artifactId>gwt-servlet</artifactId>
|
54
|
<scope>runtime</scope>
|
55
|
</dependency>
|
56
|
<dependency>
|
57
|
<groupId>com.google.gwt</groupId>
|
58
|
<artifactId>gwt-user</artifactId>
|
59
|
<scope>provided</scope>
|
60
|
</dependency>
|
61
|
<dependency>
|
62
|
<groupId>com.google.gwt</groupId>
|
63
|
<artifactId>gwt-dev</artifactId>
|
64
|
<scope>provided</scope>
|
65
|
</dependency>
|
66
|
<dependency>
|
67
|
<groupId>junit</groupId>
|
68
|
<artifactId>junit</artifactId>
|
69
|
<version>4.11</version>
|
70
|
<scope>test</scope>
|
71
|
</dependency>
|
72
|
|
73
|
<dependency>
|
74
|
<groupId>org.gwtbootstrap3</groupId>
|
75
|
<artifactId>gwtbootstrap3</artifactId>
|
76
|
<version>0.9.2</version>
|
77
|
</dependency>
|
78
|
|
79
|
<dependency>
|
80
|
<groupId>log4j</groupId>
|
81
|
<artifactId>log4j</artifactId>
|
82
|
<version>(1.2, 1.5]</version>
|
83
|
<scope>compile</scope>
|
84
|
</dependency>
|
85
|
<dependency>
|
86
|
<groupId>org.springframework</groupId>
|
87
|
<artifactId>spring-jdbc</artifactId>
|
88
|
<version>4.0.0.RELEASE</version>
|
89
|
</dependency>
|
90
|
</dependencies>
|
91
|
|
92
|
<build>
|
93
|
<plugins>
|
94
|
<plugin>
|
95
|
<groupId>org.springframework.boot</groupId>
|
96
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
97
|
</plugin>
|
98
|
<plugin>
|
99
|
<groupId>org.codehaus.mojo</groupId>
|
100
|
<artifactId>gwt-maven-plugin</artifactId>
|
101
|
<version>${gwtVersion}</version>
|
102
|
<executions>
|
103
|
<execution>
|
104
|
<goals>
|
105
|
<goal>generateAsync</goal>
|
106
|
<goal>resources</goal>
|
107
|
</goals>
|
108
|
</execution>
|
109
|
</executions>
|
110
|
</plugin>
|
111
|
</plugins>
|
112
|
</build>
|
113
|
<pluginRepositories>
|
114
|
<pluginRepository>
|
115
|
<id>spring-releases</id>
|
116
|
<url>https://repo.spring.io/libs-release</url>
|
117
|
</pluginRepository>
|
118
|
</pluginRepositories>
|
119
|
|
120
|
</project>
|