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 |
35675
|
michele.ar
|
<artifactId>dnet-node-services</artifactId>
|
13 |
34066
|
michele.ar
|
<packaging>jar</packaging>
|
14 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
15 |
|
|
<scm>
|
16 |
35675
|
michele.ar
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-node-services/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 |
|
|
<groupId>org.codehaus.groovy</groupId>
|
26 |
|
|
<artifactId>groovy-all</artifactId>
|
27 |
|
|
<version>2.1.6</version>
|
28 |
|
|
</dependency>
|
29 |
36390
|
michele.ar
|
<dependency>
|
30 |
|
|
<groupId>commons-httpclient</groupId>
|
31 |
|
|
<artifactId>commons-httpclient</artifactId>
|
32 |
|
|
<version>3.1</version>
|
33 |
|
|
</dependency>
|
34 |
36434
|
michele.ar
|
<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 |
36783
|
michele.ar
|
<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 |
36434
|
michele.ar
|
|
51 |
34077
|
michele.ar
|
<!-- Tests -->
|
52 |
34066
|
michele.ar
|
<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>
|