1 |
45395
|
michele.ar
|
<?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 |
46247
|
michele.ar
|
<artifactId>dnet-msro-application</artifactId>
|
7 |
45395
|
michele.ar
|
<version>0.0.1-SNAPSHOT</version>
|
8 |
|
|
<packaging>jar</packaging>
|
9 |
|
|
|
10 |
46247
|
michele.ar
|
<name>dnet-msro-application</name>
|
11 |
45576
|
michele.ar
|
<description>DNet Simple Aggregation Worker</description>
|
12 |
45395
|
michele.ar
|
|
13 |
|
|
<parent>
|
14 |
45607
|
michele.ar
|
<groupId>eu.dnetlib</groupId>
|
15 |
|
|
<artifactId>dnet-springboot-apps</artifactId>
|
16 |
|
|
<version>0.0.1-SNAPSHOT</version>
|
17 |
45610
|
michele.ar
|
<relativePath>../pom.xml</relativePath>
|
18 |
45395
|
michele.ar
|
</parent>
|
19 |
|
|
|
20 |
|
|
<properties>
|
21 |
45607
|
michele.ar
|
<main.basedir>${basedir}/../..</main.basedir>
|
22 |
45395
|
michele.ar
|
</properties>
|
23 |
|
|
|
24 |
|
|
<dependencies>
|
25 |
|
|
<dependency>
|
26 |
|
|
<groupId>org.springframework.boot</groupId>
|
27 |
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
28 |
|
|
</dependency>
|
29 |
45576
|
michele.ar
|
|
30 |
45395
|
michele.ar
|
<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>
|