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-node-services</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-node-services/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>org.codehaus.groovy</groupId>
|
26
|
<artifactId>groovy-all</artifactId>
|
27
|
<version>2.1.6</version>
|
28
|
</dependency>
|
29
|
<dependency>
|
30
|
<groupId>commons-httpclient</groupId>
|
31
|
<artifactId>commons-httpclient</artifactId>
|
32
|
<version>3.1</version>
|
33
|
</dependency>
|
34
|
<dependency>
|
35
|
<groupId>com.googlecode</groupId>
|
36
|
<artifactId>sarasvati</artifactId>
|
37
|
<version>1.0.3</version>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>com.googlecode</groupId>
|
41
|
<artifactId>sarasvati-visual</artifactId>
|
42
|
<version>1.0.3</version>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>javax.servlet</groupId>
|
46
|
<artifactId>javax.servlet-api</artifactId>
|
47
|
<version>${javax.servlet.version}</version>
|
48
|
<scope>provided</scope>
|
49
|
</dependency>
|
50
|
|
51
|
<!-- Tests -->
|
52
|
<dependency>
|
53
|
<groupId>org.mockito</groupId>
|
54
|
<artifactId>mockito-core</artifactId>
|
55
|
<version>1.6</version>
|
56
|
<scope>test</scope>
|
57
|
</dependency>
|
58
|
<dependency>
|
59
|
<groupId>junit</groupId>
|
60
|
<artifactId>junit</artifactId>
|
61
|
<version>${junit.version}</version>
|
62
|
<scope>test</scope>
|
63
|
</dependency>
|
64
|
</dependencies>
|
65
|
|
66
|
<properties>
|
67
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
68
|
</properties>
|
69
|
|
70
|
</project>
|