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
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-goldoa-service</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.0-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-goldoa-service/trunk</developerConnection>
15
	</scm>
16
    <properties>
17
        <gwtVersion>2.7.0</gwtVersion>
18
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19
    </properties>
20
	<dependencies>
21
        <dependency>
22
            <groupId>com.google.gwt</groupId>
23
            <artifactId>gwt-user</artifactId>
24
            <version>${gwtVersion}</version>
25
        </dependency>
26
        <dependency>
27
            <groupId>com.google.gwt</groupId>
28
            <artifactId>gwt-servlet</artifactId>
29
            <version>${gwtVersion}</version>
30
        </dependency>
31
		<dependency>
32
			<groupId>junit</groupId>
33
			<artifactId>junit</artifactId>
34
			<version>${junit.version}</version>
35
			<scope>test</scope>
36
		</dependency>
37
		<dependency>
38
			<groupId>postgresql</groupId>
39
			<artifactId>postgresql</artifactId>
40
			<version>9.1-901.jdbc4</version>
41
		</dependency>		
42
        <dependency>
43
                <groupId>org.springframework</groupId>
44
                <artifactId>spring-tx</artifactId>
45
                <version>${spring.version}</version>
46
        </dependency>
47
        <dependency>
48
                <groupId>org.springframework</groupId>
49
                <artifactId>spring-aop</artifactId>
50
                <version>${spring.version}</version>
51
        </dependency>
52
        <dependency>
53
                <groupId>org.aspectj</groupId>
54
                <artifactId>aspectjweaver</artifactId>
55
                <version>1.7.3</version>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.aspectj</groupId>
59
            <artifactId>aspectjtools</artifactId>
60
            <version>1.7.3</version>
61
        </dependency>
62
        <dependency>
63
                <groupId>org.springframework</groupId>
64
                <artifactId>spring-context</artifactId>
65
                <version>${spring.version}</version>
66
        </dependency>
67
        <dependency>
68
            <groupId>org.springframework</groupId>
69
            <artifactId>spring-context-support</artifactId>
70
            <version>${spring.version}</version>
71
        </dependency>
72
        <dependency>
73
                <groupId>org.springframework</groupId>
74
                <artifactId>spring-orm</artifactId>
75
                <version>${spring.version}</version>
76
        </dependency>
77
        <dependency>
78
                <groupId>org.springframework</groupId>
79
                <artifactId>spring-jdbc</artifactId>
80
                <version>${spring.version}</version>
81
        </dependency>
82
        <dependency>
83
            <groupId>commons-dbcp</groupId>
84
            <artifactId>commons-dbcp</artifactId>
85
            <version>[1.4, )</version>
86
        </dependency>
87
		<dependency>
88
			<groupId>javax.mail</groupId>
89
			<artifactId>mail</artifactId>
90
			<version>1.4</version>
91
		</dependency>
92
        <dependency>
93
            <groupId>com.fasterxml.jackson.core</groupId>
94
            <artifactId>jackson-core</artifactId>
95
            <version>2.5.1</version>
96
        </dependency>
97
        <dependency>
98
            <groupId>com.fasterxml.jackson.core</groupId>
99
            <artifactId>jackson-databind</artifactId>
100
            <version>2.5.1</version>
101
        </dependency>
102
        <dependency>
103
            <groupId>commons-codec</groupId>
104
            <artifactId>commons-codec</artifactId>
105
            <version>1.10</version>
106
        </dependency>
107
        <dependency>
108
            <groupId>commons-io</groupId>
109
            <artifactId>commons-io</artifactId>
110
            <version>2.4</version>
111
        </dependency>
112
        <dependency>
113
            <groupId>org.apache.commons</groupId>
114
            <artifactId>commons-lang3</artifactId>
115
            <version>3.3.2</version>
116
        </dependency>
117
        <dependency>
118
            <groupId>net.sf.ehcache</groupId>
119
            <artifactId>ehcache</artifactId>
120
            <version>2.9.0</version>
121
        </dependency>
122
        <dependency>
123
            <groupId>com.opencsv</groupId>
124
            <artifactId>opencsv</artifactId>
125
            <version>3.5</version>
126
        </dependency>
127
    </dependencies>
128

    
129

    
130
	<build>
131
		<plugins>
132
			<plugin>
133
				<groupId>org.codehaus.mojo</groupId>
134
				<artifactId>gwt-maven-plugin</artifactId>
135
                <version>${gwtVersion}</version>
136
				<executions>
137
					<execution>
138
						<goals>
139
							<goal>resources</goal>
140
						</goals>
141
					</execution>
142
				</executions>
143
			</plugin>
144
		</plugins>
145
	</build>
146
</project>
(2-2/2)