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-SNAPSHOT</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.2-SNAPSHOT</version>
|
13
|
<scm>
|
14
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-commons/trunk</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
|
<!--
|
61
|
<dependency>
|
62
|
<groupId>eu.dnetlib</groupId>
|
63
|
<artifactId>uoa-api</artifactId>
|
64
|
<version>[1.0.0, 2.0.0)</version>
|
65
|
</dependency>
|
66
|
-->
|
67
|
<dependency>
|
68
|
<groupId>eu.dnetlib</groupId>
|
69
|
<artifactId>uoa-utils</artifactId>
|
70
|
<version>[1.0.0, 1.3.0-SNAPSHOT)</version>
|
71
|
</dependency>
|
72
|
<dependency>
|
73
|
<groupId>org.springframework</groupId>
|
74
|
<artifactId>spring-context-support</artifactId>
|
75
|
<version>${spring.version}</version>
|
76
|
</dependency>
|
77
|
<dependency>
|
78
|
<groupId>eu.dnetlib</groupId>
|
79
|
<artifactId>cnr-misc-utils</artifactId>
|
80
|
<version>[1.0.0]</version>
|
81
|
</dependency>
|
82
|
<dependency>
|
83
|
<groupId>eu.dnetlib</groupId>
|
84
|
<artifactId>cnr-spring-utils</artifactId>
|
85
|
<version>[1.0.0]</version>
|
86
|
</dependency>
|
87
|
<dependency>
|
88
|
<groupId>commons-dbcp</groupId>
|
89
|
<artifactId>commons-dbcp</artifactId>
|
90
|
<version>[1.2,2.0)</version>
|
91
|
</dependency>
|
92
|
<dependency>
|
93
|
<groupId>com.google.gwt</groupId>
|
94
|
<artifactId>gwt-user</artifactId>
|
95
|
<version>${gwtVersion}</version>
|
96
|
</dependency>
|
97
|
</dependencies>
|
98
|
</project>
|