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.2, 1.3)</version>
62
        </dependency>
63
	</dependencies>
64

    
65
	<build>
66
		<plugins>
67
			<plugin>
68
				<groupId>org.codehaus.mojo</groupId>
69
				<artifactId>gwt-maven-plugin</artifactId>
70
				<executions>
71
					<execution>
72
						<goals>
73
							<goal>resources</goal>
74
						</goals>
75
					</execution>
76
				</executions>
77
			</plugin>
78
		</plugins>
79
	</build>
80
</project>
(2-2/2)