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</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>junit</groupId>
23
			<artifactId>junit</artifactId>
24
			<version>${junit.version}</version>
25
			<scope>test</scope>
26
		</dependency>
27
		<dependency>
28
			<groupId>postgresql</groupId>
29
			<artifactId>postgresql</artifactId>
30
			<version>9.1-901.jdbc4</version>
31
		</dependency>		
32
        <dependency>
33
                <groupId>org.springframework</groupId>
34
                <artifactId>spring-tx</artifactId>
35
                <version>${spring.version}</version>
36
        </dependency>
37
        <dependency>
38
                <groupId>org.springframework</groupId>
39
                <artifactId>spring-aop</artifactId>
40
                <version>${spring.version}</version>
41
        </dependency>
42
        <dependency>
43
                <groupId>org.aspectj</groupId>
44
                <artifactId>aspectjweaver</artifactId>
45
                <version>1.7.3</version>
46
        </dependency>
47
        <dependency>
48
                <groupId>org.springframework</groupId>
49
                <artifactId>spring-context</artifactId>
50
                <version>${spring.version}</version>
51
        </dependency>
52
        <dependency>
53
                <groupId>org.springframework</groupId>
54
                <artifactId>spring-orm</artifactId>
55
                <version>${spring.version}</version>
56
        </dependency>
57
        <dependency>
58
                <groupId>org.springframework</groupId>
59
                <artifactId>spring-jdbc</artifactId>
60
                <version>${spring.version}</version>
61
        </dependency>
62
        <dependency>
63
            <groupId>commons-dbcp</groupId>
64
            <artifactId>commons-dbcp</artifactId>
65
            <version>[1.4, )</version>
66
        </dependency>
67
		<dependency>
68
			<groupId>javax.mail</groupId>
69
			<artifactId>mail</artifactId>
70
			<version>1.4</version>
71
		</dependency>
72
        <dependency>
73
            <groupId>com.fasterxml.jackson.core</groupId>
74
            <artifactId>jackson-core</artifactId>
75
            <version>2.5.1</version>
76
        </dependency>
77
        <dependency>
78
            <groupId>com.fasterxml.jackson.core</groupId>
79
            <artifactId>jackson-databind</artifactId>
80
            <version>2.5.1</version>
81
        </dependency>
82
        <dependency>
83
            <groupId>commons-codec</groupId>
84
            <artifactId>commons-codec</artifactId>
85
            <version>1.10</version>
86
        </dependency>
87
        <dependency>
88
            <groupId>commons-io</groupId>
89
            <artifactId>commons-io</artifactId>
90
            <version>2.4</version>
91
        </dependency>
92
        <dependency>
93
            <groupId>org.apache.commons</groupId>
94
            <artifactId>commons-lang3</artifactId>
95
            <version>3.3.2</version>
96
        </dependency>
97

    
98
    </dependencies>
99

    
100

    
101
	<build>
102
		<plugins>
103
			<plugin>
104
				<groupId>org.codehaus.mojo</groupId>
105
				<artifactId>gwt-maven-plugin</artifactId>
106
                <version>${gwtVersion}</version>
107
				<executions>
108
					<execution>
109
						<goals>
110
							<goal>resources</goal>
111
						</goals>
112
					</execution>
113
				</executions>
114
			</plugin>
115
		</plugins>
116
	</build>
117
</project>
(2-2/2)