Project

General

Profile

1
<?xml version="1.0" ?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-claims-demo</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.0-SNAPSHOT</version>
13
	<dependencies>
14
		<dependency>
15
			<groupId>junit</groupId>
16
			<artifactId>junit</artifactId>
17
			<version>${junit.version}</version>
18
		</dependency>
19
	<!--	<dependency>
20
			<groupId>eu.dnetlib</groupId>
21
			<artifactId>uoa-commons</artifactId>
22
			<version>[1.0.0-SNAPSHOT,)</version>
23
		</dependency> -->
24
	        <dependency>
25
	            <groupId>eu.dnetlib</groupId>
26
	            <artifactId>uoa-utils</artifactId>
27
	            <version>[1.1.0, 1.3.0-SNAPSHOT)</version>
28
	        </dependency>
29
        	<dependency>
30
        	    <groupId>org.apache.ant</groupId>
31
        	    <artifactId>ant</artifactId>
32
        	    <version>1.8.2</version>
33
        	</dependency>
34
		<dependency>
35
			<groupId>org.springframework</groupId>
36
			<artifactId>spring-jdbc</artifactId>
37
			<version>${spring.version}</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>org.springframework</groupId>
41
			<artifactId>spring-tx</artifactId>
42
			<version>${spring.version}</version>
43
		</dependency>
44
		<dependency>
45
				<groupId>org.mockito</groupId>
46
				<artifactId>mockito-core</artifactId>
47
				<version>1.9.5</version>
48
				<scope>test</scope>
49
		</dependency>
50
		<dependency>
51
			<groupId>eu.dnetlib</groupId>
52
			<artifactId>cnr-blackboard-common</artifactId>
53
			<version>[1.0.0,2.0.0)</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>postgresql</groupId>
57
			<artifactId>postgresql</artifactId>
58
			<version>9.1-901.jdbc4</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>com.google.code.gson</groupId>
62
			<artifactId>gson</artifactId>
63
			<version>2.4</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>javax.mail</groupId>
67
			<artifactId>mail</artifactId>
68
			<version>1.4</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>org.springframework</groupId>
72
			<artifactId>spring-test</artifactId>
73
			<version>${spring.version}</version>
74
		</dependency>
75
		<dependency>
76
			<groupId>com.googlecode.json-simple</groupId>
77
			<artifactId>json-simple</artifactId>
78
			<version>1.1</version>
79
		</dependency>
80
	</dependencies>
81
</project>
(1-1/2)