Project

General

Profile

1 43992 alessia.ba
<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 31919 sandro.lab
	<modelVersion>4.0.0</modelVersion>
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5 45295 claudio.at
		<artifactId>dnet45-parent</artifactId>
6 48029 claudio.at
		<version>1.0.0</version>
7 31919 sandro.lab
	</parent>
8
	<groupId>eu.dnetlib</groupId>
9
	<artifactId>dnet-collector-plugins</artifactId>
10 52982 andreas.cz
	<version>1.3.18-SNAPSHOT</version>
11 31919 sandro.lab
	<scm>
12 52787 miriam.bag
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-collector-plugins/trunk</developerConnection>
13 31919 sandro.lab
	</scm>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>dnet-modular-collector-service-rmi</artifactId>
18 33264 michele.ar
			<version>[1.3.0,2.0.0)</version>
19 38981 alessia.ba
		</dependency>
20 31919 sandro.lab
		<dependency>
21 48028 claudio.at
			<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 31919 sandro.lab
			<groupId>com.google.code.gson</groupId>
27
			<artifactId>gson</artifactId>
28
			<version>${google.gson.version}</version>
29
		</dependency>
30
		<dependency>
31 38942 alessia.ba
			<groupId>commons-io</groupId>
32 31919 sandro.lab
			<artifactId>commons-io</artifactId>
33 38942 alessia.ba
			<version>${commons.io.version}</version>
34 31919 sandro.lab
		</dependency>
35
		<dependency>
36
			<groupId>junit</groupId>
37
			<artifactId>junit</artifactId>
38 38942 alessia.ba
			<version>${junit.version}</version>
39 31919 sandro.lab
			<scope>test</scope>
40
		</dependency>
41 38942 alessia.ba
		<dependency>
42
			<groupId>org.apache.httpcomponents</groupId>
43
			<artifactId>httpclient</artifactId>
44
			<version>4.5</version>
45
		</dependency>
46 42296 alessia.ba
		<dependency>
47 42393 alessia.ba
			<groupId>eu.dnetlib</groupId>
48
			<artifactId>cnr-resultset-service</artifactId>
49
			<version>[2.0.0, 3.0.0)</version>
50
			<scope>provided</scope>
51
		</dependency>
52 44721 alessia.ba
		<dependency>
53
			<groupId>com.ximpleware</groupId>
54
			<artifactId>vtd-xml</artifactId>
55 44807 alessia.ba
			<version>[2.12, 3.0.0)</version>
56 44721 alessia.ba
		</dependency>
57 44819 alessia.ba
		<dependency>
58
			<groupId>joda-time</groupId>
59
			<artifactId>joda-time</artifactId>
60
			<version>2.9.2</version>
61
		</dependency>
62 48028 claudio.at
63
		<dependency>
64
			<groupId>org.json</groupId>
65
			<artifactId>json</artifactId>
66
			<version>20160810</version>
67
		</dependency>
68
		<dependency>
69
			<groupId>org.apache.commons</groupId>
70
			<artifactId>commons-lang3</artifactId>
71 50640 alessia.ba
			<version>3.5</version>
72 48028 claudio.at
		</dependency>
73
74
		<dependency>
75
			<groupId>org.apache.poi</groupId>
76
			<artifactId>poi</artifactId>
77
			<version>3.16</version>
78
		</dependency>
79
		<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
80
		<dependency>
81
			<groupId>org.apache.poi</groupId>
82
			<artifactId>poi-ooxml</artifactId>
83
			<version>3.16</version>
84
		</dependency>
85 51957 miriam.bag
		<dependency>
86
			<groupId>org.jsoup</groupId>
87
			<artifactId>jsoup</artifactId>
88
			<version>1.11.2</version>
89
		</dependency>
90 31919 sandro.lab
	</dependencies>
91 45295 claudio.at
</project>