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-information-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-information-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
|
|
30
|
<!-- Hibernate -->
|
31
|
<dependency>
|
32
|
<groupId>org.hibernate</groupId>
|
33
|
<artifactId>hibernate-entitymanager</artifactId>
|
34
|
<version>4.3.8.Final</version>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>org.hibernate</groupId>
|
38
|
<artifactId>hibernate-core</artifactId>
|
39
|
<version>4.3.8.Final</version>
|
40
|
</dependency>
|
41
|
<dependency>
|
42
|
<groupId>org.postgresql</groupId>
|
43
|
<artifactId>postgresql</artifactId>
|
44
|
<version>9.3-1102-jdbc41</version>
|
45
|
</dependency>
|
46
|
|
47
|
<!-- Reflections -->
|
48
|
<dependency>
|
49
|
<groupId>org.reflections</groupId>
|
50
|
<artifactId>reflections</artifactId>
|
51
|
<version>0.9.9</version>
|
52
|
</dependency>
|
53
|
|
54
|
<!-- Tests -->
|
55
|
<dependency>
|
56
|
<groupId>org.mockito</groupId>
|
57
|
<artifactId>mockito-core</artifactId>
|
58
|
<version>1.6</version>
|
59
|
<scope>test</scope>
|
60
|
</dependency>
|
61
|
<dependency>
|
62
|
<groupId>junit</groupId>
|
63
|
<artifactId>junit</artifactId>
|
64
|
<version>${junit.version}</version>
|
65
|
<scope>test</scope>
|
66
|
</dependency>
|
67
|
|
68
|
<!-- UI -->
|
69
|
<dependency>
|
70
|
<groupId>commons-fileupload</groupId>
|
71
|
<artifactId>commons-fileupload</artifactId>
|
72
|
<version>1.3.1</version>
|
73
|
</dependency>
|
74
|
<dependency>
|
75
|
<groupId>eu.dnetlib</groupId>
|
76
|
<artifactId>dnet-modular-ui</artifactId>
|
77
|
<version>[3.0.0,4.0.0)</version>
|
78
|
<exclusions>
|
79
|
<exclusion>
|
80
|
<artifactId>cnr-service-common</artifactId>
|
81
|
<groupId>eu.dnetlib</groupId>
|
82
|
</exclusion>
|
83
|
</exclusions>
|
84
|
</dependency>
|
85
|
<dependency>
|
86
|
<groupId>javax.servlet</groupId>
|
87
|
<artifactId>javax.servlet-api</artifactId>
|
88
|
<version>${javax.servlet.version}</version>
|
89
|
<scope>provided</scope>
|
90
|
</dependency>
|
91
|
<!-- End UI -->
|
92
|
|
93
|
</dependencies>
|
94
|
|
95
|
<properties>
|
96
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
97
|
</properties>
|
98
|
|
99
|
</project>
|