Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2
	<modelVersion>4.0.0</modelVersion>
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<groupId>eu.dnetlib</groupId>
9
	<artifactId>dnet-download-plugins</artifactId>
10
	<version>2.1.21-SNAPSHOT</version>
11
	<scm>
12
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-download-plugins/trunk</developerConnection>
13
	</scm>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>dnet-download-service</artifactId>
18
			<version>[2.0.0,3.0.0)</version>
19
		</dependency>
20
		<dependency>
21
			<groupId>org.jsoup</groupId>
22
			<artifactId>jsoup</artifactId>
23
			<version>1.7.2</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>joda-time</groupId>
27
			<artifactId>joda-time</artifactId>
28
			<version>2.3</version>
29
		</dependency>
30

    
31
		<dependency>
32
			<groupId>org.apache.commons</groupId>
33
			<artifactId>commons-lang3</artifactId>
34
			<version>3.5</version>
35
		</dependency>
36
		<dependency>
37
			<groupId>org.apache.httpcomponents</groupId>
38
			<artifactId>httpclient</artifactId>
39
			<version>[4.5.0, 4.6.0]</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>junit</groupId>
43
			<artifactId>junit</artifactId>
44
			<version>${junit.version}</version>
45
			<scope>test</scope>
46
		</dependency>
47
	</dependencies>
48

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