1 |
30923
|
sandro.lab
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 |
|
|
<modelVersion>4.0.0</modelVersion>
|
4 |
|
|
<parent>
|
5 |
|
|
<groupId>eu.dnetlib</groupId>
|
6 |
|
|
<artifactId>dnet-parent</artifactId>
|
7 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
8 |
|
|
</parent>
|
9 |
|
|
<groupId>eu.dnetlib</groupId>
|
10 |
|
|
<artifactId>dnet-postgres-mdstore</artifactId>
|
11 |
34590
|
sandro.lab
|
<version>1.2.0-SNAPSHOT</version>
|
12 |
30923
|
sandro.lab
|
|
13 |
|
|
<dependencies>
|
14 |
|
|
<dependency>
|
15 |
|
|
<groupId>eu.dnetlib</groupId>
|
16 |
|
|
<artifactId>cnr-modular-mdstore-service</artifactId>
|
17 |
34590
|
sandro.lab
|
<version>[4.0.0,5.0.0)</version>
|
18 |
30923
|
sandro.lab
|
</dependency>
|
19 |
30928
|
sandro.lab
|
<dependency>
|
20 |
|
|
<groupId>eu.dnetlib</groupId>
|
21 |
|
|
<artifactId>cnr-inspector</artifactId>
|
22 |
|
|
<version>[1.0.0,2.0.0)</version>
|
23 |
|
|
</dependency>
|
24 |
30923
|
sandro.lab
|
|
25 |
|
|
<dependency>
|
26 |
|
|
<groupId>org.springframework</groupId>
|
27 |
|
|
<artifactId>spring-tx</artifactId>
|
28 |
|
|
<version>${spring.version}</version>
|
29 |
|
|
</dependency>
|
30 |
|
|
|
31 |
|
|
<dependency>
|
32 |
|
|
<groupId>org.springframework</groupId>
|
33 |
|
|
<artifactId>spring-jdbc</artifactId>
|
34 |
|
|
<version>${spring.version}</version>
|
35 |
|
|
</dependency>
|
36 |
|
|
|
37 |
|
|
<dependency>
|
38 |
|
|
<groupId>postgresql</groupId>
|
39 |
|
|
<artifactId>postgresql</artifactId>
|
40 |
|
|
<version>9.1-901-1.jdbc4</version>
|
41 |
|
|
</dependency>
|
42 |
|
|
<dependency>
|
43 |
|
|
<groupId>junit</groupId>
|
44 |
|
|
<artifactId>junit</artifactId>
|
45 |
|
|
<version>${junit.version}</version>
|
46 |
|
|
<scope>test</scope>
|
47 |
|
|
</dependency>
|
48 |
|
|
|
49 |
|
|
<dependency>
|
50 |
|
|
<groupId>joda-time</groupId>
|
51 |
|
|
<artifactId>joda-time</artifactId>
|
52 |
|
|
<version>2.3</version>
|
53 |
|
|
</dependency>
|
54 |
|
|
|
55 |
|
|
<dependency>
|
56 |
|
|
<groupId>com.google.code.gson</groupId>
|
57 |
|
|
<artifactId>gson</artifactId>
|
58 |
|
|
<version>2.3</version>
|
59 |
|
|
<scope>test</scope>
|
60 |
|
|
</dependency>
|
61 |
|
|
|
62 |
|
|
</dependencies>
|
63 |
|
|
|
64 |
|
|
</project>
|