Project

General

Profile

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

    
92
        <dependency>
93
            <groupId>commons-dbcp</groupId>
94
            <artifactId>commons-dbcp</artifactId>
95
            <version>[1.4, )</version>
96
        </dependency>
97
		<dependency>
98
			<groupId>javax.mail</groupId>
99
			<artifactId>mail</artifactId>
100
			<version>1.4</version>
101
		</dependency>
102
        <dependency>
103
            <groupId>com.fasterxml.jackson.core</groupId>
104
            <artifactId>jackson-core</artifactId>
105
            <version>2.5.1</version>
106
        </dependency>
107
        <dependency>
108
            <groupId>com.fasterxml.jackson.core</groupId>
109
            <artifactId>jackson-databind</artifactId>
110
            <version>2.5.1</version>
111
        </dependency>
112
        <dependency>
113
            <groupId>commons-codec</groupId>
114
            <artifactId>commons-codec</artifactId>
115
            <version>1.10</version>
116
        </dependency>
117
        <dependency>
118
            <groupId>commons-io</groupId>
119
            <artifactId>commons-io</artifactId>
120
            <version>2.4</version>
121
        </dependency>
122
        <dependency>
123
            <groupId>org.apache.commons</groupId>
124
            <artifactId>commons-lang3</artifactId>
125
            <version>3.3.2</version>
126
        </dependency>
127

    
128
        <!-- Hibernate EHCache API -->
129
        <!--<dependency>-->
130
            <!--<groupId>org.hibernate</groupId>-->
131
            <!--<artifactId>hibernate-ehcache</artifactId>-->
132
            <!--<version>4.3.5.Final</version>-->
133
        <!--</dependency>-->
134
<!--
135
        <dependency>
136
            <groupId>net.sf.ehcache</groupId>
137
            <artifactId>ehcache</artifactId>
138
            <version>2.9.0</version>
139
        </dependency>
140
-->
141

    
142
        <!--&lt;!&ndash; EHCache uses slf4j for logging &ndash;&gt;-->
143
        <!--<dependency>-->
144
            <!--<groupId>org.slf4j</groupId>-->
145
            <!--<artifactId>slf4j-simple</artifactId>-->
146
            <!--<version>1.7.5</version>-->
147
        <!--</dependency>-->
148

    
149
        <dependency>
150
            <groupId>com.opencsv</groupId>
151
            <artifactId>opencsv</artifactId>
152
            <version>3.5</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

    
167

    
168
        <dependency>
169
            <groupId>javassist</groupId>
170
            <artifactId>javassist</artifactId>
171
            <version>3.12.1.GA</version>
172
        </dependency>
173

    
174

    
175
        <dependency>
176
            <groupId>org.aspectj</groupId>
177
            <artifactId>aspectjrt</artifactId>
178
            <version>1.5.4</version>
179
        </dependency>
180

    
181
        <dependency>
182
            <groupId>log4j</groupId>
183
            <artifactId>log4j</artifactId>
184
            <version>1.2.15</version>
185
        </dependency>
186
        <dependency>
187
            <groupId>junit</groupId>
188
            <artifactId>junit</artifactId>
189
            <version>RELEASE</version>
190
        </dependency>
191
        <dependency>
192
            <groupId>org.junit.jupiter</groupId>
193
            <artifactId>junit-jupiter-api</artifactId>
194
            <version>RELEASE</version>
195
        </dependency>
196

    
197
    </dependencies>
198

    
199

    
200
	<build>
201
		<plugins>
202
			<plugin>
203
				<groupId>org.codehaus.mojo</groupId>
204
				<artifactId>gwt-maven-plugin</artifactId>
205
                <version>${gwtVersion}</version>
206
				<executions>
207
					<execution>
208
						<goals>
209
							<goal>resources</goal>
210
						</goals>
211
                        <configuration>
212
                            <style>DETAILED</style>
213
                        </configuration>
214
					</execution>
215
				</executions>
216
			</plugin>
217
		</plugins>
218
	</build>
219
</project>
(2-2/2)