1
|
<?xml version="1.0"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3
|
<parent>
|
4
|
<groupId>eu.dnetlib</groupId>
|
5
|
<artifactId>dnet-parent</artifactId>
|
6
|
<version>1.0.0-SNAPSHOT</version>
|
7
|
</parent>
|
8
|
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.dnetlib</groupId>
|
11
|
<artifactId>uoa-goldoa-service</artifactId>
|
12
|
<packaging>jar</packaging>
|
13
|
<version>1.0.0-SNAPSHOT</version>
|
14
|
<scm>
|
15
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-goldoa-service/trunk</developerConnection>
|
16
|
</scm>
|
17
|
<properties>
|
18
|
<gwtVersion>2.7.0</gwtVersion>
|
19
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
20
|
<junit.version>4.12</junit.version>
|
21
|
</properties>
|
22
|
<dependencies>
|
23
|
<dependency>
|
24
|
<groupId>com.google.gwt</groupId>
|
25
|
<artifactId>gwt-user</artifactId>
|
26
|
<version>${gwtVersion}</version>
|
27
|
</dependency>
|
28
|
<dependency>
|
29
|
<groupId>com.google.gwt</groupId>
|
30
|
<artifactId>gwt-servlet</artifactId>
|
31
|
<version>${gwtVersion}</version>
|
32
|
</dependency>
|
33
|
<dependency>
|
34
|
<groupId>junit</groupId>
|
35
|
<artifactId>junit</artifactId>
|
36
|
<version>${junit.version}</version>
|
37
|
<scope>test</scope>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>postgresql</groupId>
|
41
|
<artifactId>postgresql</artifactId>
|
42
|
<version>9.1-901.jdbc4</version>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>org.springframework</groupId>
|
46
|
<artifactId>spring-tx</artifactId>
|
47
|
<version>${spring.version}</version>
|
48
|
</dependency>
|
49
|
<dependency>
|
50
|
<groupId>org.springframework</groupId>
|
51
|
<artifactId>spring-aop</artifactId>
|
52
|
<version>${spring.version}</version>
|
53
|
</dependency>
|
54
|
<dependency>
|
55
|
<groupId>org.springframework</groupId>
|
56
|
<artifactId>spring-orm</artifactId>
|
57
|
<version>${spring.version}</version>
|
58
|
</dependency>
|
59
|
|
60
|
<dependency>
|
61
|
<groupId>org.aspectj</groupId>
|
62
|
<artifactId>aspectjweaver</artifactId>
|
63
|
<version>1.7.3</version>
|
64
|
</dependency>
|
65
|
<dependency>
|
66
|
<groupId>org.aspectj</groupId>
|
67
|
<artifactId>aspectjtools</artifactId>
|
68
|
<version>1.7.3</version>
|
69
|
</dependency>
|
70
|
<dependency>
|
71
|
<groupId>org.springframework</groupId>
|
72
|
<artifactId>spring-context</artifactId>
|
73
|
<version>${spring.version}</version>
|
74
|
</dependency>
|
75
|
<dependency>
|
76
|
<groupId>org.springframework</groupId>
|
77
|
<artifactId>spring-context-support</artifactId>
|
78
|
<version>${spring.version}</version>
|
79
|
</dependency>
|
80
|
|
81
|
<dependency>
|
82
|
<groupId>org.springframework</groupId>
|
83
|
<artifactId>spring-jdbc</artifactId>
|
84
|
<version>${spring.version}</version>
|
85
|
</dependency>
|
86
|
<dependency>
|
87
|
<groupId>org.springframework</groupId>
|
88
|
<artifactId>spring-test</artifactId>
|
89
|
<version>${spring.version}</version>
|
90
|
</dependency>
|
91
|
<dependency>
|
92
|
<groupId>commons-dbcp</groupId>
|
93
|
<artifactId>commons-dbcp</artifactId>
|
94
|
<version>[1.4, )</version>
|
95
|
</dependency>
|
96
|
<dependency>
|
97
|
<groupId>javax.mail</groupId>
|
98
|
<artifactId>mail</artifactId>
|
99
|
<version>1.4</version>
|
100
|
</dependency>
|
101
|
<dependency>
|
102
|
<groupId>com.fasterxml.jackson.core</groupId>
|
103
|
<artifactId>jackson-core</artifactId>
|
104
|
<version>2.5.1</version>
|
105
|
</dependency>
|
106
|
<dependency>
|
107
|
<groupId>com.fasterxml.jackson.core</groupId>
|
108
|
<artifactId>jackson-databind</artifactId>
|
109
|
<version>2.5.1</version>
|
110
|
</dependency>
|
111
|
<dependency>
|
112
|
<groupId>commons-codec</groupId>
|
113
|
<artifactId>commons-codec</artifactId>
|
114
|
<version>1.10</version>
|
115
|
</dependency>
|
116
|
<dependency>
|
117
|
<groupId>commons-io</groupId>
|
118
|
<artifactId>commons-io</artifactId>
|
119
|
<version>2.4</version>
|
120
|
</dependency>
|
121
|
<dependency>
|
122
|
<groupId>org.apache.commons</groupId>
|
123
|
<artifactId>commons-lang3</artifactId>
|
124
|
<version>3.3.2</version>
|
125
|
</dependency>
|
126
|
<dependency>
|
127
|
<groupId>net.sf.ehcache</groupId>
|
128
|
<artifactId>ehcache</artifactId>
|
129
|
<version>2.9.0</version>
|
130
|
</dependency>
|
131
|
<dependency>
|
132
|
<groupId>com.opencsv</groupId>
|
133
|
<artifactId>opencsv</artifactId>
|
134
|
<version>3.5</version>
|
135
|
</dependency>
|
136
|
|
137
|
<dependency>
|
138
|
<groupId>org.hibernate</groupId>
|
139
|
<artifactId>hibernate-core</artifactId>
|
140
|
<version>4.3.6.Final</version>
|
141
|
</dependency>
|
142
|
|
143
|
<!-- <dependency>
|
144
|
<groupId>org.hibernate</groupId>
|
145
|
<artifactId>hibernate-entitymanager</artifactId>
|
146
|
<version>4.3.5.Final</version>
|
147
|
</dependency>
|
148
|
-->
|
149
|
<dependency>
|
150
|
<groupId>org.hsqldb</groupId>
|
151
|
<artifactId>hsqldb</artifactId>
|
152
|
<version>2.2.9</version>
|
153
|
</dependency>
|
154
|
|
155
|
<dependency>
|
156
|
<groupId>xerces</groupId>
|
157
|
<artifactId>xercesImpl</artifactId>
|
158
|
<version>2.11.0</version>
|
159
|
<scope>test</scope>
|
160
|
</dependency>
|
161
|
<dependency>
|
162
|
<groupId>org.hibernate</groupId>
|
163
|
<artifactId>hibernate-core</artifactId>
|
164
|
<version>4.3.11.Final</version>
|
165
|
</dependency>
|
166
|
<dependency>
|
167
|
<groupId>org.hibernate</groupId>
|
168
|
<artifactId>hibernate-core</artifactId>
|
169
|
<version>4.3.11.Final</version>
|
170
|
</dependency>
|
171
|
<dependency>
|
172
|
<groupId>org.hibernate</groupId>
|
173
|
<artifactId>hibernate-core</artifactId>
|
174
|
<version>4.3.11.Final</version>
|
175
|
</dependency>
|
176
|
|
177
|
|
178
|
</dependencies>
|
179
|
|
180
|
|
181
|
<build>
|
182
|
<plugins>
|
183
|
<plugin>
|
184
|
<groupId>org.codehaus.mojo</groupId>
|
185
|
<artifactId>gwt-maven-plugin</artifactId>
|
186
|
<version>${gwtVersion}</version>
|
187
|
<executions>
|
188
|
<execution>
|
189
|
<goals>
|
190
|
<goal>resources</goal>
|
191
|
</goals>
|
192
|
</execution>
|
193
|
</executions>
|
194
|
</plugin>
|
195
|
</plugins>
|
196
|
</build>
|
197
|
</project>
|