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-commons</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.2.0</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-commons/tags/uoa-commons-1.2.0</developerConnection>
15
	</scm>
16

    
17
	<properties>
18
		<gwtVersion>2.7.0</gwtVersion>
19
	</properties>
20

    
21
	<dependencies>
22
		<!-- Added to override 2.1.4 from icm-something -->
23
		<dependency>
24
			<groupId>com.sun.xml.bind</groupId>
25
			<artifactId>jaxb-core</artifactId>
26
			<version>2.2.7</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>com.sun.xml.bind</groupId>
30
			<artifactId>jaxb-impl</artifactId>
31
			<version>2.2.7</version>
32
		</dependency>
33
		<dependency>
34
			<groupId>net.sf.ehcache</groupId>
35
			<artifactId>ehcache</artifactId>
36
			<version>2.8.0</version>
37
			<type>pom</type>
38
		</dependency>
39
		<dependency>
40
			<groupId>com.unboundid</groupId>
41
			<artifactId>unboundid-ldapsdk</artifactId>
42
			<version>1.1.3</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>apache</groupId>
46
			<artifactId>commons-logging</artifactId>
47
			<version>[0.0.0,)</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>junit</groupId>
51
			<artifactId>junit</artifactId>
52
			<version>[0.0.0,)</version>
53
			<scope>test</scope>
54
		</dependency>
55
		<dependency>
56
			<groupId>log4j</groupId>
57
			<artifactId>log4j</artifactId>
58
			<version>[1.2.14,1.3.0-SNAPSHOT)</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>eu.dnetlib</groupId>
62
			<artifactId>uoa-api</artifactId>
63
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>eu.dnetlib</groupId>
67
			<artifactId>uoa-domain</artifactId>
68
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>eu.dnetlib</groupId>
72
			<artifactId>uoa-utils</artifactId>
73
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
74
		</dependency>
75
		<dependency>
76
			<groupId>org.springframework</groupId>
77
			<artifactId>spring-context-support</artifactId>
78
			<version>${spring.version}</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>eu.dnetlib</groupId>
82
			<artifactId>cnr-misc-utils</artifactId>
83
			<version>[1.0.0]</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>eu.dnetlib</groupId>
87
			<artifactId>cnr-spring-utils</artifactId>
88
			<version>[1.0.0]</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>commons-dbcp</groupId>
92
			<artifactId>commons-dbcp</artifactId>
93
			<version>[1.2,2.0)</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>com.google.gwt</groupId>
97
			<artifactId>gwt-user</artifactId>
98
			<version>${gwtVersion}</version>
99
		</dependency>
100
	</dependencies>
101
</project>
(2-2/2)