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
		<dependency>
62
			<groupId>com.sun.xsom</groupId>
63
			<artifactId>xsom</artifactId>
64
			<version>20110809</version>
65
		</dependency>
66

    
67
		<dependency>
68
			<groupId>oro</groupId>
69
			<artifactId>oro</artifactId>
70
			<version>2.0.8</version>
71
		</dependency>
72

    
73
		<dependency>
74
			<groupId>org.codehaus.groovy</groupId>
75
			<artifactId>groovy</artifactId>
76
		</dependency>
77

    
78
		<!-- test deps -->
79
		<dependency>
80
			<groupId>org.springframework.boot</groupId>
81
			<artifactId>spring-boot-starter-test</artifactId>
82
			<scope>test</scope>
83
		</dependency>
84

    
85

    
86
		<dependency>
87
			<groupId>eu.michael-simons</groupId>
88
			<artifactId>datamongotest-autoconfigure-spring-boot</artifactId>
89
			<version>0.0.1</version>
90
			<scope>test</scope>
91
		</dependency>
92

    
93
		<dependency>
94
			<groupId>de.flapdoodle.embed</groupId>
95
			<artifactId>de.flapdoodle.embed.mongo</artifactId>
96
			<version>2.0.0</version>
97
			<scope>test</scope>
98
		</dependency>
99

    
100
	</dependencies>
101

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