Project

General

Profile

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-components</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-components/trunk</developerConnection>
17
	</scm>
18
	<dependencies>
19
		<!-- Spring -->
20
		<dependency>
21
			<groupId>org.springframework</groupId>
22
			<artifactId>spring-orm</artifactId>
23
			<version>${spring.version}</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>org.springframework</groupId>
27
			<artifactId>spring-aop</artifactId>
28
			<version>${spring.version}</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.springframework</groupId>
32
			<artifactId>spring-beans</artifactId>
33
			<version>${spring.version}</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.springframework</groupId>
37
			<artifactId>spring-context</artifactId>
38
			<version>${spring.version}</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.springframework</groupId>
42
			<artifactId>spring-core</artifactId>
43
			<version>${spring.version}</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.springframework</groupId>
47
			<artifactId>spring-expression</artifactId>
48
			<version>${spring.version}</version>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.springframework</groupId>
52
			<artifactId>spring-test</artifactId>
53
			<version>${spring.version}</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.springframework</groupId>
57
			<artifactId>spring-tx</artifactId>
58
			<version>${spring.version}</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.springframework</groupId>
62
			<artifactId>spring-web</artifactId>
63
			<version>${spring.version}</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>org.springframework</groupId>
67
			<artifactId>spring-webmvc</artifactId>
68
			<version>${spring.version}</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>org.springframework</groupId>
72
			<artifactId>spring-context-support</artifactId>
73
			<version>${spring.version}</version>
74
		</dependency>
75
		<!-- End Spring -->
76

    
77
		<!-- CXF -->
78
		<dependency>
79
			<groupId>org.apache.cxf</groupId>
80
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
81
			<version>${cxf.version}</version>
82
		</dependency>
83

    
84
		<!-- Apache libraries -->
85
		<dependency>
86
			<groupId>apache</groupId>
87
			<artifactId>oro</artifactId>
88
			<version>2.0.8</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>commons-lang</groupId>
92
			<artifactId>commons-lang</artifactId>
93
			<version>${commons.lang.version}</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>commons-codec</groupId>
97
			<artifactId>commons-codec</artifactId>
98
			<version>${commons.codec.version}</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>commons-io</groupId>
102
			<artifactId>commons-io</artifactId>
103
			<version>${commons.io.version}</version>
104
		</dependency>
105
		<!--End Apache libraries  -->
106
		
107
		<!-- Other libraries -->
108
		<dependency>
109
			<groupId>dom4j</groupId>
110
			<artifactId>dom4j</artifactId>
111
			<version>${dom4j.version}</version>
112
		</dependency>
113
		<dependency>
114
			<groupId>com.google.code.gson</groupId>
115
			<artifactId>gson</artifactId>
116
			<version>${google.gson.version}</version>
117
		</dependency>
118
		<dependency>
119
			<groupId>org.antlr</groupId>
120
			<artifactId>stringtemplate</artifactId>
121
			<version>3.2</version>
122
		</dependency>
123
		<dependency>
124
			<groupId>opensymphony</groupId>
125
			<artifactId>quartz</artifactId>
126
			<version>1.6.6</version>
127
		</dependency>
128
		<!-- End Other libraries -->
129
		
130
		<!-- Reflections -->
131
		<dependency>
132
			<groupId>org.reflections</groupId>
133
			<artifactId>reflections</artifactId>
134
			<version>0.9.9</version>
135
		</dependency>
136

    
137
		<!-- Tests -->
138
		<dependency>
139
			<groupId>org.mockito</groupId>
140
			<artifactId>mockito-core</artifactId>
141
			<version>1.6</version>
142
			<scope>test</scope>
143
		</dependency>
144
		<dependency>
145
			<groupId>junit</groupId>
146
			<artifactId>junit</artifactId>
147
			<version>${junit.version}</version>
148
			<scope>test</scope>
149
		</dependency>
150
	</dependencies>
151

    
152
	<properties>
153
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
154
	</properties>
155

    
156
</project>
(2-2/2)