Project

General

Profile

1
<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/xsd/maven-4.0.0.xsd">
2
	<modelVersion>4.0.0</modelVersion>
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<groupId>eu.dnetlib</groupId>
9
	<artifactId>dnet-collector-plugins</artifactId>
10
	<version>1.3.5-SNAPSHOT</version>
11
	<scm>
12
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-collector-plugins/trunk</developerConnection>
13
	</scm>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>dnet-modular-collector-service-rmi</artifactId>
18
			<version>[1.3.0,2.0.0)</version>
19
		</dependency>
20
		<dependency>
21
			<groupId>eu.dnetlib</groupId>
22
			<artifactId>dnet-modular-collector-service</artifactId>
23
			<version>[1.3.0,4.0.0)</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>com.google.code.gson</groupId>
27
			<artifactId>gson</artifactId>
28
			<version>${google.gson.version}</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>commons-io</groupId>
32
			<artifactId>commons-io</artifactId>
33
			<version>${commons.io.version}</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>commons-lang</groupId>
37
			<artifactId>commons-lang</artifactId>
38
			<version>${commons.lang.version}</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>junit</groupId>
42
			<artifactId>junit</artifactId>
43
			<version>${junit.version}</version>
44
			<scope>test</scope>
45
		</dependency>
46
		<dependency>
47
			<groupId>org.apache.httpcomponents</groupId>
48
			<artifactId>httpclient</artifactId>
49
			<version>4.5</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>eu.dnetlib</groupId>
53
			<artifactId>cnr-resultset-service</artifactId>
54
			<version>[2.0.0, 3.0.0)</version>
55
			<scope>provided</scope>
56
		</dependency>
57
		<dependency>
58
			<groupId>com.ximpleware</groupId>
59
			<artifactId>vtd-xml</artifactId>
60
			<version>[2.12, 3.0.0)</version>
61
		</dependency>
62
		<dependency>
63
			<groupId>joda-time</groupId>
64
			<artifactId>joda-time</artifactId>
65
			<version>2.9.2</version>
66
		</dependency>
67

    
68
		<dependency>
69
			<groupId>org.json</groupId>
70
			<artifactId>json</artifactId>
71
			<version>20160810</version>
72
		</dependency>
73
		<dependency>
74
			<groupId>org.apache.commons</groupId>
75
			<artifactId>commons-lang3</artifactId>
76
			<version>3.0</version>
77
		</dependency>
78

    
79
		<dependency>
80
			<groupId>org.apache.poi</groupId>
81
			<artifactId>poi</artifactId>
82
			<version>3.16</version>
83
		</dependency>
84
		<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
85
		<dependency>
86
			<groupId>org.apache.poi</groupId>
87
			<artifactId>poi-ooxml</artifactId>
88
			<version>3.16</version>
89
		</dependency>
90
	</dependencies>
91
</project>
(2-2/2)