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-SNAPSHOT</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.3-SNAPSHOT</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-datasource-rest-api/trunk</developerConnection>
16
	</scm>
17

    
18
	<dependencies>
19

    
20
		<dependency>
21
			<groupId>eu.dnetlib</groupId>
22
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
23
			<version>[6.0.0,7.0.0)</version>
24
			<exclusions>
25
				<exclusion>
26
					<groupId>com.sun.jersey</groupId>
27
					<artifactId>jersey-server</artifactId>
28
				</exclusion>
29
				<exclusion>
30
					<groupId>eu.dnetlib</groupId>
31
					<artifactId>dnet-hadoop-commons</artifactId>
32
				</exclusion>
33
			</exclusions>
34
		</dependency>
35

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

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

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

    
54
		<dependency>
55
			<groupId>org.apache.commons</groupId>
56
			<artifactId>commons-dbcp2</artifactId>
57
			<version>2.1</version>
58
		</dependency>
59

    
60
		<!--
61
		<dependency>
62
			<groupId>io.swagger</groupId>
63
			<artifactId>swagger-core</artifactId>
64
			<version>1.5.10</version>
65
		</dependency>
66

    
67
		<dependency>
68
			<groupId>org.apache.servicemix.bundles</groupId>
69
			<artifactId>org.apache.servicemix.bundles.okhttp</artifactId>
70
			<version>2.7.5_1</version>
71
		</dependency>
72
		-->
73
		<dependency>
74
			<groupId>com.fasterxml.jackson.datatype</groupId>
75
			<artifactId>jackson-datatype-joda</artifactId>
76
			<version>2.6.6</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>joda-time</groupId>
80
			<artifactId>joda-time</artifactId>
81
			<version>2.8.2</version>
82
		</dependency>
83

    
84
		<dependency>
85
			<groupId>io.springfox</groupId>
86
			<artifactId>springfox-swagger2</artifactId>
87
			<version>${springfox-version}</version>
88
		</dependency>
89
		<dependency>
90
			<groupId>io.springfox</groupId>
91
			<artifactId>springfox-swagger-ui</artifactId>
92
			<version>${springfox-version}</version>
93
		</dependency>
94

    
95
		<dependency>
96
			<groupId>org.hibernate</groupId>
97
			<artifactId>hibernate-validator</artifactId>
98
			<version>5.2.4.Final</version>
99
		</dependency>
100

    
101

    
102

    
103

    
104
		<dependency>
105
			<groupId>javax.servlet</groupId>
106
			<artifactId>javax.servlet-api</artifactId>
107
			<version>${javax.servlet.version}</version>
108
			<scope>provided</scope>
109
		</dependency>
110

    
111
		<dependency>
112
			<groupId>junit</groupId>
113
			<artifactId>junit</artifactId>
114
			<version>${junit.version}</version>
115
			<scope>test</scope>
116
		</dependency>
117
	</dependencies>
118

    
119
	<properties>
120
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
121
		<springfox-version>2.5.0</springfox-version>
122
	</properties>
123

    
124
</project>
(2-2/2)