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-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-spring-utils</artifactId>
13
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<dependencies>
16
		<dependency>
17
			<groupId>commons-io</groupId>
18
			<artifactId>commons-io</artifactId>
19
			<version>${commons.io.version}</version>
20
		</dependency>
21
		<dependency>
22
			<groupId>com.google.guava</groupId>
23
			<artifactId>guava</artifactId>
24
			<version>${google.guava.version}</version>
25
		</dependency>
26
		<dependency>
27
			<groupId>org.springframework</groupId>
28
			<artifactId>spring-aop</artifactId>
29
			<version>${spring.version}</version>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.springframework</groupId>
33
			<artifactId>spring-web</artifactId>
34
			<version>${spring.version}</version>
35
		</dependency>
36
		<dependency>
37
			<groupId>org.springframework</groupId>
38
			<artifactId>spring-webmvc</artifactId>
39
			<version>${spring.version}</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>jparsec</groupId>
43
			<artifactId>jparsec</artifactId>
44
			<version>2.0</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>net.sf.ehcache</groupId>
48
			<artifactId>ehcache</artifactId>
49
			<version>2.8.0</version>
50
		</dependency>
51

    
52
		<dependency>
53
			<groupId>org.antlr</groupId>
54
			<artifactId>stringtemplate</artifactId>
55
			<version>3.2</version>
56
		</dependency>
57
		<dependency>
58
			<groupId>runcc</groupId>
59
			<artifactId>runcc</artifactId>
60
			<version>0.7</version>
61
		</dependency>
62
		<dependency>
63
			<groupId>org.springframework</groupId>
64
			<artifactId>spring-test</artifactId>
65
			<version>${spring.version}</version>
66
			<scope>test</scope>
67
		</dependency>
68
		<dependency>
69
			<groupId>org.mockito</groupId>
70
			<artifactId>mockito-core</artifactId>
71
			<version>1.6</version>
72
			<scope>test</scope>
73
		</dependency>
74
		<dependency>
75
			<groupId>junit</groupId>
76
			<artifactId>junit</artifactId>
77
			<version>${junit.version}</version>
78
			<scope>test</scope>
79
		</dependency>
80
		<dependency>
81
			<groupId>log4j</groupId>
82
			<artifactId>log4j</artifactId>
83
			<version>1.2.15</version>
84
			<scope>test</scope>
85
		</dependency>
86
		<dependency>
87
			<groupId>eu.dnetlib</groupId>
88
			<artifactId>cnr-misc-utils</artifactId>
89
			<version>[1.0.0-SNAPSHOT]</version>
90
		</dependency>
91
		<dependency>
92
			<groupId>javax.servlet</groupId>
93
			<artifactId>javax.servlet-api</artifactId>
94
			<version>${javax.servlet.version}</version>
95
			<scope>provided</scope>
96
		</dependency>
97

    
98

    
99
	</dependencies>
100
</project>
(2-2/2)