Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
	</parent>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>dnet-download-plugins</artifactId>
11
	<version>1.0.0-SNAPSHOT</version>
12

    
13
	<dependencies>
14
		<dependency>
15
			<groupId>eu.dnetlib</groupId>
16
			<artifactId>dnet-download-service</artifactId>
17
			<version>[1.0.0-SNAPSHOT]</version>
18
		</dependency>
19
		<dependency>
20
			<groupId>org.jsoup</groupId>
21
			<artifactId>jsoup</artifactId>
22
			<version>1.7.2</version>
23
		</dependency>
24
		<dependency>
25
			<groupId>joda-time</groupId>
26
			<artifactId>joda-time</artifactId>
27
			<version>2.3</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>junit</groupId>
31
			<artifactId>junit</artifactId>
32
			<version>${junit.version}</version>
33
			<scope>test</scope>
34
		</dependency>
35
	</dependencies>
36

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