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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>cnr-spring-utils</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.2-SNAPSHOT</version>
14
	<scm>
15
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/cnr-spring-utils/trunk</developerConnection>
16
	</scm>
17
	<dependencies>
18
		<dependency>
19
			<groupId>commons-io</groupId>
20
			<artifactId>commons-io</artifactId>
21
			<version>${commons.io.version}</version>
22
		</dependency>
23
		<dependency>
24
			<groupId>com.google.guava</groupId>
25
			<artifactId>guava</artifactId>
26
			<version>${google.guava.version}</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>org.springframework</groupId>
30
			<artifactId>spring-aop</artifactId>
31
			<version>${spring.version}</version>
32
		</dependency>
33
		<dependency>
34
			<groupId>org.springframework</groupId>
35
			<artifactId>spring-web</artifactId>
36
			<version>${spring.version}</version>
37
		</dependency>
38
		<dependency>
39
			<groupId>org.springframework</groupId>
40
			<artifactId>spring-webmvc</artifactId>
41
			<version>${spring.version}</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>jparsec</groupId>
45
			<artifactId>jparsec</artifactId>
46
			<version>2.0</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>net.sf.ehcache</groupId>
50
			<artifactId>ehcache</artifactId>
51
			<version>2.8.0</version>
52
		</dependency>
53

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

    
100

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