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-mongo-mdstore</artifactId>
12
	<packaging>jar</packaging>
13
	<version>3.0.0-SNAPSHOT</version>
14
	<dependencies>
15
		<dependency>
16
			<groupId>junit</groupId>
17
			<artifactId>junit</artifactId>
18
			<version>${junit.version}</version>
19
			<scope>test</scope>
20
		</dependency>
21
		<dependency>
22
			<groupId>org.springframework</groupId>
23
			<artifactId>spring-test</artifactId>
24
			<version>${spring.version}</version>
25
			<scope>test</scope>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.mockito</groupId>
29
			<artifactId>mockito-core</artifactId>
30
			<version>1.6</version>
31
			<scope>test</scope>
32
		</dependency>
33
		<dependency>
34
			<groupId>eu.dnetlib</groupId>
35
			<artifactId>cnr-test-utils</artifactId>
36
			<version>[1.0.0-SNAPSHOT,1.1.0-SNAPSHOT)</version>
37
			<scope>test</scope>
38
		</dependency>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>cnr-modular-mdstore-service</artifactId>
42
			<version>[3.0.0-SNAPSHOT,3.1.0-SNAPSHOT)</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>eu.dnetlib</groupId>
46
			<artifactId>cnr-inspector</artifactId>
47
			<version>[1.0.0-SNAPSHOT,1.1.0-SNAPSHOT)</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.mongodb</groupId>
51
			<artifactId>mongo-java-driver</artifactId>
52
			<version>${mongodb.driver.version}</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>com.google.code.gson</groupId>
56
			<artifactId>gson</artifactId>
57
			<version>2.2</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>joda-time</groupId>
61
			<artifactId>joda-time</artifactId>
62
			<version>2.3</version>
63
		</dependency>
64

    
65
	</dependencies>
66
</project>
(2-2/2)