Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-parent</artifactId>
7
		<version>2.0.0-SNAPSHOT</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-data-support-services</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/dnet50/modules/dnet-data-support-services/trunk</developerConnection>
16
	</scm>
17
	<dependencies>
18
		<dependency>
19
			<groupId>org.springframework</groupId>
20
			<artifactId>spring-tx</artifactId>
21
			<version>${spring.version}</version>
22
		</dependency>
23
		<dependency>
24
			<groupId>org.springframework</groupId>
25
			<artifactId>spring-jdbc</artifactId>
26
			<version>${spring.version}</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>org.springframework</groupId>
30
			<artifactId>spring-context-support</artifactId>
31
			<version>${spring.version}</version>
32
		</dependency>
33
		<dependency>
34
			<groupId>org.apache.velocity</groupId>
35
			<artifactId>velocity</artifactId>
36
			<version>1.7</version>
37
			<exclusions>
38
				<exclusion>
39
					<artifactId>antlr</artifactId>
40
					<groupId>antlr</groupId>
41
				</exclusion>
42
                <!--<exclusion>-->
43
                <!--<artifactId>commons-lang</artifactId>-->
44
                <!--<groupId>commons-lang</groupId>-->
45
                <!--</exclusion>-->
46
			</exclusions>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.postgresql</groupId>
50
			<artifactId>jdbc4driver</artifactId>
51
			<version>8.3</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>org.hibernate</groupId>
55
			<artifactId>hibernate-core</artifactId>
56
			<version>5.0.8.Final</version>
57
			<exclusions>
58
				<exclusion>
59
					<artifactId>antlr</artifactId>
60
					<groupId>antlr</groupId>
61
				</exclusion>
62
			</exclusions>
63
		</dependency>
64

    
65
		<dependency>
66
			<groupId>eu.dnetlib</groupId>
67
			<artifactId>dnet-core-services</artifactId>
68
			<version>[1.0.0-SNAPSHOT,2.0.0)</version>
69
		</dependency>
70

    
71
		<dependency>
72
			<groupId>org.mockito</groupId>
73
			<artifactId>mockito-core</artifactId>
74
			<version>1.9.5</version>
75
			<scope>test</scope>
76
		</dependency>
77
		<dependency>
78
			<groupId>com.google.code.gson</groupId>
79
			<artifactId>gson</artifactId>
80
			<version>${google.gson.version}</version>
81
		</dependency>
82

    
83
		<dependency>
84
			<groupId>joda-time</groupId>
85
			<artifactId>joda-time</artifactId>
86
			<version>2.2</version>
87
		</dependency>
88

    
89
		<dependency>
90
			<groupId>junit</groupId>
91
			<artifactId>junit</artifactId>
92
			<version>${junit.version}</version>
93
			<scope>test</scope>
94
		</dependency>
95
		<dependency>
96
			<groupId>jaxen</groupId>
97
			<artifactId>jaxen</artifactId>
98
			<version>1.1.6</version>
99
		</dependency>
100
	</dependencies>
101
</project>
(2-2/2)