Project

General

Profile

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 45576 michele.ar
	<artifactId>dnet-simple-aggregation-worker</artifactId>
7 45395 michele.ar
	<version>0.0.1-SNAPSHOT</version>
8
	<packaging>jar</packaging>
9
10
	<name>dnet-simple-aggregation-worker</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 46349 claudio.at
26
		<!-- for /metrics and /health controllers -->
27 45395 michele.ar
		<dependency>
28
			<groupId>org.springframework.boot</groupId>
29 46349 claudio.at
			<artifactId>spring-boot-starter-actuator</artifactId>
30
		</dependency>
31
32
		<dependency>
33
			<groupId>org.springframework.boot</groupId>
34 45395 michele.ar
			<artifactId>spring-boot-starter-data-mongodb</artifactId>
35
		</dependency>
36 45576 michele.ar
37 45395 michele.ar
		<dependency>
38
			<groupId>commons-net</groupId>
39
			<artifactId>commons-net</artifactId>
40
			<version>3.3</version>
41
		</dependency>
42
43
		<dependency>
44
			<groupId>org.apache.commons</groupId>
45
			<artifactId>commons-csv</artifactId>
46
			<version>1.0</version>
47
		</dependency>
48
49
		<dependency>
50
			<groupId>org.apache.commons</groupId>
51
			<artifactId>commons-compress</artifactId>
52
			<version>1.6</version>
53
		</dependency>
54
55
		<dependency>
56
			<groupId>com.jcraft</groupId>
57
			<artifactId>jsch</artifactId>
58
			<version>0.1.53</version>
59
		</dependency>
60 46349 claudio.at
61
		<!-- test deps -->
62
		<dependency>
63
			<groupId>org.springframework.boot</groupId>
64
			<artifactId>spring-boot-starter-test</artifactId>
65
			<scope>test</scope>
66
		</dependency>
67
68
69
		<dependency>
70
			<groupId>eu.michael-simons</groupId>
71
			<artifactId>datamongotest-autoconfigure-spring-boot</artifactId>
72
			<version>0.0.1</version>
73
			<scope>test</scope>
74
		</dependency>
75
76
		<dependency>
77
			<groupId>de.flapdoodle.embed</groupId>
78
			<artifactId>de.flapdoodle.embed.mongo</artifactId>
79
			<version>2.0.0</version>
80
			<scope>test</scope>
81
		</dependency>
82
83 45395 michele.ar
	</dependencies>
84
85
</project>