Project

General

Profile

1 34066 michele.ar
<?xml version="1.0" encoding="UTF-8"?>
2 34099 michele.ar
<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 34066 michele.ar
	<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 36657 michele.ar
	<artifactId>dnet-manager-service</artifactId>
13 34066 michele.ar
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<scm>
16 36657 michele.ar
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-manager-service/trunk</developerConnection>
17 34066 michele.ar
	</scm>
18
	<dependencies>
19
		<dependency>
20
			<groupId>eu.dnetlib</groupId>
21 35590 michele.ar
			<artifactId>dnet-components</artifactId>
22
			<version>1.0.0-SNAPSHOT</version>
23 34099 michele.ar
		</dependency>
24 36370 michele.ar
		<dependency>
25 36746 michele.ar
			<groupId>eu.dnetlib</groupId>
26
			<artifactId>dnet-node-services</artifactId>
27
			<version>1.0.0-SNAPSHOT</version>
28
		</dependency>
29
		<dependency>
30 36370 michele.ar
			<groupId>org.codehaus.groovy</groupId>
31
			<artifactId>groovy-all</artifactId>
32
			<version>2.1.6</version>
33
		</dependency>
34 36390 michele.ar
		<dependency>
35
			<groupId>commons-httpclient</groupId>
36
			<artifactId>commons-httpclient</artifactId>
37
			<version>3.1</version>
38
		</dependency>
39 37082 michele.ar
		<dependency>
40 36434 michele.ar
			<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 37082 michele.ar
		<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 34077 michele.ar
		<!-- Tests -->
66 34066 michele.ar
		<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>