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 />
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-manager-service</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/dnet-manager-service/trunk</developerConnection>
17
	</scm>
18
	<dependencies>
19
		<dependency>
20
			<groupId>eu.dnetlib</groupId>
21
			<artifactId>dnet-components</artifactId>
22
			<version>1.0.0-SNAPSHOT</version>
23
		</dependency>
24
		<dependency>
25
			<groupId>eu.dnetlib</groupId>
26
			<artifactId>dnet-node-services</artifactId>
27
			<version>1.0.0-SNAPSHOT</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>org.codehaus.groovy</groupId>
31
			<artifactId>groovy-all</artifactId>
32
			<version>2.1.6</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>commons-httpclient</groupId>
36
			<artifactId>commons-httpclient</artifactId>
37
			<version>3.1</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>com.googlecode</groupId>
41
			<artifactId>sarasvati</artifactId>
42
			<version>1.0.3</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>com.googlecode</groupId>
46
			<artifactId>sarasvati-visual</artifactId>
47
			<version>1.0.3</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>eu.dnetlib</groupId>
51
			<artifactId>dnet-mongo-logging</artifactId>
52
			<version>[1.0.0,2.0.0)</version>
53
			<exclusions>
54
				<exclusion>
55
					<artifactId>cnr-misc-utils</artifactId>
56
					<groupId>eu.dnetlib</groupId>
57
				</exclusion>
58
				<exclusion>
59
					<artifactId>cnr-spring-utils</artifactId>
60
					<groupId>eu.dnetlib</groupId>
61
				</exclusion>
62
			</exclusions>
63
		</dependency>
64

    
65
		<!-- Tests -->
66
		<dependency>
67
			<groupId>org.mockito</groupId>
68
			<artifactId>mockito-core</artifactId>
69
			<version>1.6</version>
70
			<scope>test</scope>
71
		</dependency>
72
		<dependency>
73
			<groupId>junit</groupId>
74
			<artifactId>junit</artifactId>
75
			<version>${junit.version}</version>
76
			<scope>test</scope>
77
		</dependency>
78
	</dependencies>
79

    
80
	<properties>
81
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
82
	</properties>
83

    
84
</project>
(2-2/2)