Project

General

Profile

1
<?xml version="1.0" ?>
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
		<relativePath />
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>cnr-openaire-exporter</artifactId>
13
	<packaging>jar</packaging>
14
	<version>5.0.4.funders-SNAPSHOT</version>
15
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/cnr-openaire-exporter/branches/funders</developerConnection>
17
	</scm>
18

    
19
	<dependencies>
20
		<dependency>
21
			<groupId>eu.dnetlib</groupId>
22
			<artifactId>cnr-service-common</artifactId>
23
			<version>[2.1.2,3.0.0)</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>eu.dnetlib</groupId>
27
			<artifactId>cnr-resultset-client</artifactId>
28
			<version>[2.0.0,3.0.0)</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>eu.dnetlib</groupId>
32
			<artifactId>cnr-enabling-database-api</artifactId>
33
			<version>[1.0.0,2.0.0)</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>javax.servlet</groupId>
37
			<artifactId>javax.servlet-api</artifactId>
38
			<version>${javax.servlet.version}</version>
39
			<scope>provided</scope>
40
		</dependency>
41
		<dependency>
42
			<groupId>junit</groupId>
43
			<artifactId>junit</artifactId>
44
			<version>${junit.version}</version>
45
			<scope>test</scope>
46
		</dependency>
47
		<!-- fixes http://stackoverflow.com/questions/16335591/spring-mvc-json-406-not-acceptable -->
48
		<dependency>
49
			<groupId>com.fasterxml.jackson.core</groupId>
50
			<artifactId>jackson-core</artifactId>
51
			<version>2.2.3</version>
52
		</dependency>
53
		<dependency>
54
			<groupId>com.fasterxml.jackson.core</groupId>
55
			<artifactId>jackson-databind</artifactId>
56
			<version>2.2.3</version>
57
		</dependency>
58
		<dependency>
59
			<groupId>com.fasterxml.jackson.core</groupId>
60
			<artifactId>jackson-annotations</artifactId>
61
			<version>2.2.3</version>
62
		</dependency>
63
		<!-- Swagger for API documentation -->
64
		<dependency>
65
			<groupId>com.wordnik</groupId>
66
			<artifactId>swagger-annotations</artifactId>
67
			<version>1.3.12</version>
68
		</dependency>
69
</dependencies>
70
</project>
(2-2/2)