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-SNAPSHOT</version>
|
8
|
<relativePath></relativePath>
|
9
|
</parent>
|
10
|
<modelVersion>4.0.0</modelVersion>
|
11
|
<groupId>eu.dnetlib</groupId>
|
12
|
<artifactId>cnr-service-common</artifactId>
|
13
|
<packaging>jar</packaging>
|
14
|
<version>1.0.0-SNAPSHOT</version>
|
15
|
<dependencies>
|
16
|
<dependency>
|
17
|
<groupId>org.springframework</groupId>
|
18
|
<artifactId>spring-test</artifactId>
|
19
|
<version>${spring.version}</version>
|
20
|
<scope>test</scope>
|
21
|
</dependency>
|
22
|
<dependency>
|
23
|
<groupId>org.mockito</groupId>
|
24
|
<artifactId>mockito-core</artifactId>
|
25
|
<version>1.6</version>
|
26
|
<scope>test</scope>
|
27
|
</dependency>
|
28
|
<dependency>
|
29
|
<groupId>junit</groupId>
|
30
|
<artifactId>junit</artifactId>
|
31
|
<version>${junit.version}</version>
|
32
|
<scope>test</scope>
|
33
|
</dependency>
|
34
|
<dependency>
|
35
|
<groupId>org.antlr</groupId>
|
36
|
<artifactId>stringtemplate</artifactId>
|
37
|
<version>3.2</version>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>opensymphony</groupId>
|
41
|
<artifactId>quartz</artifactId>
|
42
|
<version>1.6.6</version>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>org.springframework</groupId>
|
46
|
<artifactId>spring-tx</artifactId>
|
47
|
<version>${spring.version}</version>
|
48
|
</dependency>
|
49
|
<dependency>
|
50
|
<groupId>org.springframework</groupId>
|
51
|
<artifactId>spring-beans</artifactId>
|
52
|
<version>${spring.version}</version>
|
53
|
</dependency>
|
54
|
|
55
|
|
56
|
<dependency>
|
57
|
<groupId>eu.dnetlib</groupId>
|
58
|
<artifactId>cnr-misc-utils</artifactId>
|
59
|
<version>[1.0.0-SNAPSHOT]</version>
|
60
|
</dependency>
|
61
|
<dependency>
|
62
|
<groupId>eu.dnetlib</groupId>
|
63
|
<artifactId>cnr-service-utils</artifactId>
|
64
|
<version>[1.0.0-SNAPSHOT]</version>
|
65
|
</dependency>
|
66
|
<dependency>
|
67
|
<groupId>eu.dnetlib</groupId>
|
68
|
<artifactId>cnr-rmi-api</artifactId>
|
69
|
<version>[2.0.0-SNAPSHOT]</version>
|
70
|
</dependency>
|
71
|
<dependency>
|
72
|
<groupId>eu.dnetlib</groupId>
|
73
|
<artifactId>cnr-spring-utils</artifactId>
|
74
|
<version>[1.0.0-SNAPSHOT]</version>
|
75
|
</dependency>
|
76
|
<dependency>
|
77
|
<groupId>eu.dnetlib</groupId>
|
78
|
<artifactId>dnet-runtime</artifactId>
|
79
|
<version>[1.0.0-SNAPSHOT]</version>
|
80
|
<scope>test</scope>
|
81
|
</dependency>
|
82
|
<dependency>
|
83
|
<groupId>eu.dnetlib</groupId>
|
84
|
<artifactId>cnr-test-utils</artifactId>
|
85
|
<version>[1.0.0-SNAPSHOT]</version>
|
86
|
<scope>test</scope>
|
87
|
</dependency>
|
88
|
<dependency>
|
89
|
<groupId>eu.dnetlib</groupId>
|
90
|
<artifactId>icm-functionality-api</artifactId>
|
91
|
<version>[1.0.0-SNAPSHOT]</version>
|
92
|
<scope>test</scope>
|
93
|
</dependency>
|
94
|
|
95
|
</dependencies>
|
96
|
</project>
|