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

    
90
	<build>
91
		<plugins>
92
			<plugin>
93
				<groupId>org.codehaus.mojo</groupId>
94
				<artifactId>gwt-maven-plugin</artifactId>
95
				<executions>
96
					<execution>
97
						<goals>
98
							<goal>resources</goal>
99
						</goals>
100
					</execution>
101
				</executions>
102
			</plugin>
103
		</plugins>
104
	</build>
105
</project>
(2-2/2)