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>dnet-parent</artifactId>
6
		<version>1.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-datasource-rest-api</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/dnet40/modules/dnet-datasource-rest-api/trunk</developerConnection>
16
	</scm>
17
	<dependencies>
18

    
19
		<!--
20
		<dependency>
21
			<groupId>org.springframework.restdocs</groupId>
22
			<artifactId>spring-restdocs-mockmvc</artifactId>
23
			<version>1.1.2.RELEASE</version>
24
		</dependency>
25
		-->
26
		<dependency>
27
			<groupId>eu.dnetlib</groupId>
28
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
29
			<version>[5.0.0,6.0.0)</version>
30
			<exclusions>
31
				<exclusion>
32
					<groupId>com.sun.jersey</groupId>
33
					<artifactId>jersey-server</artifactId>
34
				</exclusion>
35
			</exclusions>
36
		</dependency>
37

    
38
		<dependency>
39
			<groupId>eu.dnetlib</groupId>
40
			<artifactId>cnr-service-common</artifactId>
41
			<version>[2.0.0,3.0.0)</version>
42
		</dependency>
43

    
44
		<dependency>
45
			<groupId>eu.dnetlib</groupId>
46
			<artifactId>cnr-rmi-api</artifactId>
47
			<version>[2.0.0,3.0.0)</version>
48
		</dependency>
49

    
50
		<dependency>
51
			<groupId>org.mongodb</groupId>
52
			<artifactId>mongo-java-driver</artifactId>
53
			<version>${mongodb.driver.version}</version>
54
		</dependency>
55

    
56
		<dependency>
57
			<groupId>org.apache.commons</groupId>
58
			<artifactId>commons-dbcp2</artifactId>
59
			<version>2.1</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>javax.servlet</groupId>
63
			<artifactId>javax.servlet-api</artifactId>
64
			<version>${javax.servlet.version}</version>
65
			<scope>provided</scope>
66
		</dependency>
67

    
68
		<dependency>
69
			<groupId>junit</groupId>
70
			<artifactId>junit</artifactId>
71
			<version>${junit.version}</version>
72
			<scope>test</scope>
73
		</dependency>
74
	</dependencies>
75

    
76
	<properties>
77
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
78
	</properties>
79

    
80
</project>
    (1-1/1)