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/xsd/maven-4.0.0.xsd">
|
4
|
<modelVersion>4.0.0</modelVersion>
|
5
|
|
6
|
<artifactId>dnet-msro-application</artifactId>
|
7
|
<version>0.0.1-SNAPSHOT</version>
|
8
|
<packaging>jar</packaging>
|
9
|
|
10
|
<name>dnet-msro-application</name>
|
11
|
<description>DNet Simple Aggregation Worker</description>
|
12
|
|
13
|
<parent>
|
14
|
<groupId>eu.dnetlib</groupId>
|
15
|
<artifactId>dnet-springboot-apps</artifactId>
|
16
|
<version>0.0.1-SNAPSHOT</version>
|
17
|
<relativePath>../pom.xml</relativePath>
|
18
|
</parent>
|
19
|
|
20
|
<properties>
|
21
|
<main.basedir>${basedir}/../..</main.basedir>
|
22
|
</properties>
|
23
|
|
24
|
<dependencies>
|
25
|
<dependency>
|
26
|
<groupId>org.springframework.boot</groupId>
|
27
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
28
|
</dependency>
|
29
|
|
30
|
<dependency>
|
31
|
<groupId>commons-net</groupId>
|
32
|
<artifactId>commons-net</artifactId>
|
33
|
<version>3.3</version>
|
34
|
</dependency>
|
35
|
|
36
|
<dependency>
|
37
|
<groupId>org.apache.commons</groupId>
|
38
|
<artifactId>commons-csv</artifactId>
|
39
|
<version>1.0</version>
|
40
|
</dependency>
|
41
|
|
42
|
<dependency>
|
43
|
<groupId>org.apache.commons</groupId>
|
44
|
<artifactId>commons-compress</artifactId>
|
45
|
<version>1.6</version>
|
46
|
</dependency>
|
47
|
|
48
|
<dependency>
|
49
|
<groupId>com.jcraft</groupId>
|
50
|
<artifactId>jsch</artifactId>
|
51
|
<version>0.1.53</version>
|
52
|
</dependency>
|
53
|
|
54
|
</dependencies>
|
55
|
|
56
|
</project>
|