Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>1.0.0-SNAPSHOT</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>cnr-enabling-database-service</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.0-SNAPSHOT</version>
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.springframework</groupId>
17
			<artifactId>spring-tx</artifactId>
18
			<version>${spring.version}</version>
19
		</dependency>
20
		<dependency>
21
			<groupId>org.springframework</groupId>
22
			<artifactId>spring-jdbc</artifactId>
23
			<version>${spring.version}</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>org.springframework</groupId>
27
			<artifactId>spring-context-support</artifactId>
28
			<version>${spring.version}</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.apache.velocity</groupId>
32
			<artifactId>velocity</artifactId>
33
			<version>1.7</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.postgresql</groupId>
37
			<artifactId>jdbc4driver</artifactId>
38
			<version>8.3</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.hibernate</groupId>
42
			<artifactId>hibernate-core</artifactId>
43
			<version>4.3.2.Final</version>
44
		</dependency>
45

    
46
		<!-- <dependency> -->
47
		<!-- <groupId>org.hibernate</groupId> -->
48
		<!-- <artifactId>hibernate</artifactId> -->
49
		<!-- <version>3.3.2</version> -->
50
		<!-- </dependency> -->
51
		<!-- <dependency> -->
52
		<!-- <groupId>org.hibernate</groupId> -->
53
		<!-- <artifactId>hibernate-annotations</artifactId> -->
54
		<!-- <version>3.5.6-Final</version> -->
55
		<!-- </dependency> -->
56

    
57
		<dependency>
58
			<groupId>eu.dnetlib</groupId>
59
			<artifactId>cnr-enabling-database-api</artifactId>
60
			<version>[1.0.0-SNAPSHOT]</version>
61
		</dependency>
62
		<dependency>
63
			<groupId>eu.dnetlib</groupId>
64
			<artifactId>cnr-rmi-api</artifactId>
65
			<version>[2.0.0-SNAPSHOT]</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>eu.dnetlib</groupId>
69
			<artifactId>cnr-blackboard-common</artifactId>
70
			<version>[1.0.0-SNAPSHOT]</version>
71
		</dependency>
72
		<dependency>
73
			<groupId>eu.dnetlib</groupId>
74
			<artifactId>cnr-resultset-service</artifactId>
75
			<version>[1.0.0-SNAPSHOT]</version>
76
		</dependency>
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>cnr-resultset-client</artifactId>
80
			<version>[1.0.0-SNAPSHOT]</version>
81
		</dependency>
82
		<dependency>
83
			<groupId>org.mockito</groupId>
84
			<artifactId>mockito-core</artifactId>
85
			<version>1.9.5</version>
86
			<scope>test</scope>
87
		</dependency>
88
		<dependency>
89
			<groupId>com.google.code.gson</groupId>
90
			<artifactId>gson</artifactId>
91
			<version>${google.gson.version}</version>
92
		</dependency>
93
		<dependency>
94
			<groupId>joda-time</groupId>
95
			<artifactId>joda-time</artifactId>
96
			<version>2.3</version>
97
		</dependency>
98
		<dependency>
99
			<groupId>junit</groupId>
100
			<artifactId>junit</artifactId>
101
			<version>${junit.version}</version>
102
			<scope>test</scope>
103
		</dependency>
104
		<dependency>
105
			<groupId>jaxen</groupId>
106
			<artifactId>jaxen</artifactId>
107
			<version>1.1.6</version>
108
		</dependency>
109
	</dependencies>
110
</project>
(2-2/2)