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" 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>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>cnr-enabling-database-service</artifactId>
11
	<packaging>jar</packaging>
12
	<version>3.2.3-SNAPSHOT</version>
13
	<scm>
14
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/cnr-enabling-database-service/trunk</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>org.springframework</groupId>
19
			<artifactId>spring-tx</artifactId>
20
			<version>${spring.version}</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>org.springframework</groupId>
24
			<artifactId>spring-jdbc</artifactId>
25
			<version>${spring.version}</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.springframework</groupId>
29
			<artifactId>spring-context-support</artifactId>
30
			<version>${spring.version}</version>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.apache.velocity</groupId>
34
			<artifactId>velocity</artifactId>
35
			<version>1.7</version>
36
		</dependency>
37
		<dependency>
38
			<groupId>org.postgresql</groupId>
39
			<artifactId>postgresql</artifactId>
40
			<version>${postgres.jdbc.version}</version>
41
		</dependency>
42
		<dependency>
43
			<groupId>org.apache.commons</groupId>
44
			<artifactId>commons-dbcp2</artifactId>
45
			<version>2.2.0</version>
46
		</dependency>
47
		<dependency>
48
			<groupId>org.hibernate</groupId>
49
			<artifactId>hibernate-core</artifactId>
50
			<version>4.3.2.Final</version>
51
		</dependency>
52

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