Project

General

Profile

1 39013 claudio.at
<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 39013 claudio.at
	<version>1.3.0</version>
11 31919 sandro.lab
	<scm>
12 39013 claudio.at
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-collector-plugins/tags/dnet-collector-plugins-1.3.0</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 38981 alessia.ba
26 31919 sandro.lab
		<dependency>
27 38942 alessia.ba
			<groupId>commons-io</groupId>
28 31919 sandro.lab
			<artifactId>commons-io</artifactId>
29 38942 alessia.ba
			<version>${commons.io.version}</version>
30 31919 sandro.lab
		</dependency>
31
		<dependency>
32 32940 sandro.lab
			<groupId>commons-lang</groupId>
33
			<artifactId>commons-lang</artifactId>
34
			<version>${commons.lang.version}</version>
35
		</dependency>
36
		<dependency>
37 31919 sandro.lab
			<groupId>junit</groupId>
38
			<artifactId>junit</artifactId>
39 38942 alessia.ba
			<version>${junit.version}</version>
40 31919 sandro.lab
			<scope>test</scope>
41
		</dependency>
42 38942 alessia.ba
		<dependency>
43
			<groupId>org.apache.httpcomponents</groupId>
44
			<artifactId>httpclient</artifactId>
45
			<version>4.5</version>
46
		</dependency>
47 31919 sandro.lab
	</dependencies>
48 38981 alessia.ba
	<build>
49
		<plugins>
50
			<plugin>
51
				<groupId>org.apache.maven.plugins</groupId>
52
				<artifactId>maven-compiler-plugin</artifactId>
53
				<version>3.1</version>
54
				<configuration>
55
					<source>1.7</source>
56
					<target>${maven.compiler.target.version}</target>
57
				</configuration>
58
			</plugin>
59
		</plugins>
60
	</build>
61 31919 sandro.lab
</project>