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/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-hadoop-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>cnr-misc-utils</artifactId>
13
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<dependencies>
16
		<dependency>
17
			<groupId>commons-lang</groupId>
18
			<artifactId>commons-lang</artifactId>
19
			<version>${commons.lang.version}</version>
20
		</dependency>
21
		<dependency>
22
			<groupId>commons-codec</groupId>
23
			<artifactId>commons-codec</artifactId>
24
			<version>${commons.codec.version}</version>
25
		</dependency>
26
		<dependency>
27
			<groupId>dom4j</groupId>
28
			<artifactId>dom4j</artifactId>
29
			<version>1.6.1</version>
30
		</dependency>
31
		<dependency>
32
			<groupId>jaxen</groupId>
33
			<artifactId>jaxen</artifactId>
34
			<version>1.1.6</version>
35
		</dependency>
36
		<dependency>
37
		    <groupId>saxonica</groupId>
38
		    <artifactId>saxon</artifactId>
39
		    <version>9.1.0.8</version>
40
		</dependency>
41
		<dependency>
42
		    <groupId>saxonica</groupId>
43
		    <artifactId>saxon-dom</artifactId>
44
		    <version>9.1.0.8</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>jgrapht</groupId>
48
			<artifactId>jgrapht</artifactId>
49
			<version>0.7.2</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>net.sf.ehcache</groupId>
53
			<artifactId>ehcache</artifactId>
54
			<version>2.8.0</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>com.google.guava</groupId>
58
			<artifactId>guava</artifactId>
59
			<version>${google.guava.version}</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>org.mockito</groupId>
63
			<artifactId>mockito-core</artifactId>
64
			<version>1.6</version>
65
			<scope>test</scope>
66
		</dependency>
67
		<dependency>
68
			<groupId>junit</groupId>
69
			<artifactId>junit</artifactId>
70
			<version>${junit.version}</version>
71
			<scope>test</scope>
72
		</dependency>
73
		<dependency>
74
			<groupId>org.springframework</groupId>
75
			<artifactId>spring-test</artifactId>
76
			<version>${spring.version}</version>
77
			<optional>false</optional>
78
		</dependency>
79
		<dependency>
80
			<groupId>commons-io</groupId>
81
			<artifactId>commons-io</artifactId>
82
			<version>${commons.io.version}</version>
83
			<scope>test</scope>
84
		</dependency>
85
	</dependencies>
86
</project>
(2-2/2)