Project

General

Profile

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-simple-aggregation-worker</artifactId>
7
	<version>0.0.1-SNAPSHOT</version>
8
	<packaging>jar</packaging>
9

    
10
	<name>dnet-simple-aggregation-worker</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

    
26
		<!-- for /metrics and /health controllers -->
27
		<dependency>
28
			<groupId>org.springframework.boot</groupId>
29
			<artifactId>spring-boot-starter-actuator</artifactId>
30
		</dependency>
31

    
32
		<dependency>
33
			<groupId>org.springframework.boot</groupId>
34
			<artifactId>spring-boot-starter-data-mongodb</artifactId>
35
		</dependency>
36
				
37
		<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

    
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
	</dependencies>
84

    
85
</project>
(2-2/2)