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</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
	<scm>
16
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/cnr-spring-utils/trunk</developerConnection>
17
	</scm>
18
	<dependencies>
19
		<dependency>
20
			<groupId>commons-io</groupId>
21
			<artifactId>commons-io</artifactId>
22
			<version>${commons.io.version}</version>
23
		</dependency>
24
		<dependency>
25
			<groupId>com.google.guava</groupId>
26
			<artifactId>guava</artifactId>
27
			<version>${google.guava.version}</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>org.springframework</groupId>
31
			<artifactId>spring-aop</artifactId>
32
			<version>${spring.version}</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.springframework</groupId>
36
			<artifactId>spring-web</artifactId>
37
			<version>${spring.version}</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>org.springframework</groupId>
41
			<artifactId>spring-webmvc</artifactId>
42
			<version>${spring.version}</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>jparsec</groupId>
46
			<artifactId>jparsec</artifactId>
47
			<version>2.0</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>net.sf.ehcache</groupId>
51
			<artifactId>ehcache</artifactId>
52
			<version>2.8.0</version>
53
		</dependency>
54

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

    
101

    
102
	</dependencies>
103
</project>
(2-2/2)