Project

General

Profile

1 43992 alessia.ba
<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 31919 sandro.lab
	<modelVersion>4.0.0</modelVersion>
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<groupId>eu.dnetlib</groupId>
9
	<artifactId>dnet-collector-plugins</artifactId>
10 44247 alessia.ba
	<version>1.3.2</version>
11 31919 sandro.lab
	<scm>
12 44247 alessia.ba
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.2</developerConnection>
13 31919 sandro.lab
	</scm>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>dnet-modular-collector-service-rmi</artifactId>
18 33264 michele.ar
			<version>[1.3.0,2.0.0)</version>
19 38981 alessia.ba
		</dependency>
20 31919 sandro.lab
		<dependency>
21
			<groupId>com.google.code.gson</groupId>
22
			<artifactId>gson</artifactId>
23
			<version>${google.gson.version}</version>
24
		</dependency>
25
		<dependency>
26 38942 alessia.ba
			<groupId>commons-io</groupId>
27 31919 sandro.lab
			<artifactId>commons-io</artifactId>
28 38942 alessia.ba
			<version>${commons.io.version}</version>
29 31919 sandro.lab
		</dependency>
30
		<dependency>
31 32940 sandro.lab
			<groupId>commons-lang</groupId>
32
			<artifactId>commons-lang</artifactId>
33
			<version>${commons.lang.version}</version>
34
		</dependency>
35
		<dependency>
36 31919 sandro.lab
			<groupId>junit</groupId>
37
			<artifactId>junit</artifactId>
38 38942 alessia.ba
			<version>${junit.version}</version>
39 31919 sandro.lab
			<scope>test</scope>
40
		</dependency>
41 38942 alessia.ba
		<dependency>
42
			<groupId>org.apache.httpcomponents</groupId>
43
			<artifactId>httpclient</artifactId>
44
			<version>4.5</version>
45
		</dependency>
46 42296 alessia.ba
		<dependency>
47 42393 alessia.ba
			<groupId>eu.dnetlib</groupId>
48
			<artifactId>cnr-resultset-service</artifactId>
49
			<version>[2.0.0, 3.0.0)</version>
50
			<scope>provided</scope>
51
		</dependency>
52 31919 sandro.lab
	</dependencies>
53 38981 alessia.ba
	<build>
54
		<plugins>
55
			<plugin>
56
				<groupId>org.apache.maven.plugins</groupId>
57
				<artifactId>maven-compiler-plugin</artifactId>
58
				<version>3.1</version>
59
				<configuration>
60
					<source>1.7</source>
61
					<target>${maven.compiler.target.version}</target>
62
				</configuration>
63
			</plugin>
64
		</plugins>
65
	</build>
66 31919 sandro.lab
</project>