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"
|
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></relativePath>
|
9
|
</parent>
|
10
|
<modelVersion>4.0.0</modelVersion>
|
11
|
<groupId>eu.dnetlib</groupId>
|
12
|
<artifactId>dnet-modular-collector-service</artifactId>
|
13
|
<packaging>jar</packaging>
|
14
|
<version>1.1.0-SNAPSHOT</version>
|
15
|
<dependencies>
|
16
|
<dependency>
|
17
|
<groupId>eu.dnetlib</groupId>
|
18
|
<artifactId>dnet-modular-collector-service-rmi</artifactId>
|
19
|
<version>[1.1.0-SNAPSHOT]</version>
|
20
|
</dependency>
|
21
|
<dependency>
|
22
|
<groupId>eu.dnetlib</groupId>
|
23
|
<artifactId>cnr-resultset-service</artifactId>
|
24
|
<version>[1.0.0-SNAPSHOT]</version>
|
25
|
</dependency>
|
26
|
<dependency>
|
27
|
<groupId>eu.dnetlib</groupId>
|
28
|
<artifactId>cnr-blackboard-common</artifactId>
|
29
|
<version>[1.0.0-SNAPSHOT]</version>
|
30
|
</dependency>
|
31
|
<dependency>
|
32
|
<groupId>net.sf.opencsv</groupId>
|
33
|
<artifactId>opencsv</artifactId>
|
34
|
<version>2.0</version>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>junit</groupId>
|
38
|
<artifactId>junit</artifactId>
|
39
|
<version>4.8.2</version>
|
40
|
<scope>test</scope>
|
41
|
</dependency>
|
42
|
<dependency>
|
43
|
<groupId>commons-net</groupId>
|
44
|
<artifactId>commons-net</artifactId>
|
45
|
<version>3.3</version>
|
46
|
</dependency>
|
47
|
<dependency>
|
48
|
<groupId>jcraft</groupId>
|
49
|
<artifactId>jsch</artifactId>
|
50
|
<version>0.1.44</version>
|
51
|
</dependency>
|
52
|
<dependency>
|
53
|
<groupId>org.apache.commons</groupId>
|
54
|
<artifactId>commons-compress</artifactId>
|
55
|
<version>1.6</version>
|
56
|
</dependency>
|
57
|
|
58
|
<!-- <dependency> -->
|
59
|
<!-- <groupId>it.unimi.dsi</groupId> -->
|
60
|
<!-- <artifactId>fastutil</artifactId> -->
|
61
|
<!-- <version>6.5.11</version> -->
|
62
|
<!-- </dependency> -->
|
63
|
<!-- <dependency> -->
|
64
|
<!-- <groupId>com.sleepycat</groupId> -->
|
65
|
<!-- <artifactId>je</artifactId> -->
|
66
|
<!-- <version>5.0.73</version> -->
|
67
|
<!-- </dependency> -->
|
68
|
<dependency>
|
69
|
<groupId>org.mockito</groupId>
|
70
|
<artifactId>mockito-core</artifactId>
|
71
|
<version>1.6</version>
|
72
|
<scope>test</scope>
|
73
|
</dependency>
|
74
|
|
75
|
<dependency>
|
76
|
<groupId>commons-httpclient</groupId>
|
77
|
<artifactId>commons-httpclient</artifactId>
|
78
|
<version>3.1</version>
|
79
|
</dependency>
|
80
|
|
81
|
|
82
|
</dependencies>
|
83
|
</project>
|