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>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-user-management</artifactId>
11
	<packaging>jar</packaging>
12
	<version>2.0.5-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-user-management/trunk</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>junit</groupId>
19
			<artifactId>junit</artifactId>
20
			<version>${junit.version}</version>
21
			<scope>test</scope>
22
		</dependency>
23

    
24
		<dependency>
25
			<groupId>org.springframework</groupId>
26
			<artifactId>spring-beans</artifactId>
27
			<version>${spring.version}</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>org.springframework</groupId>
31
			<artifactId>spring-context</artifactId>
32
			<version>${spring.version}</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>com.sun.jersey.contribs</groupId>
36
			<artifactId>jersey-spring</artifactId>
37
			<version>1.8</version>
38
			<exclusions>
39
				<exclusion>
40
					<groupId>org.springframework</groupId>
41
					<artifactId>spring</artifactId>
42
				</exclusion>
43
				<exclusion>
44
					<groupId>org.springframework</groupId>
45
					<artifactId>spring-core</artifactId>
46
				</exclusion>
47
				<exclusion>
48
					<groupId>org.springframework</groupId>
49
					<artifactId>spring-web</artifactId>
50
				</exclusion>
51
				<exclusion>
52
					<groupId>org.springframework</groupId>
53
					<artifactId>spring-beans</artifactId>
54
				</exclusion>
55
				<exclusion>
56
					<groupId>org.springframework</groupId>
57
					<artifactId>spring-context</artifactId>
58
				</exclusion>
59
				<exclusion>
60
					<groupId>org.springframework</groupId>
61
					<artifactId>spring-utils</artifactId>
62
				</exclusion>
63
				<exclusion>
64
					<groupId>org.springframework</groupId>
65
					<artifactId>spring-aop</artifactId>
66
				</exclusion>
67
			</exclusions>
68
		</dependency>
69
		<dependency>
70
			<groupId>com.google.code.gson</groupId>
71
			<artifactId>gson</artifactId>
72
			<version>2.6.2</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>javax.servlet</groupId>
76
			<artifactId>javax.servlet-api</artifactId>
77
			<version>3.0.1</version>
78
			<scope>provided</scope>
79
		</dependency>
80
		<dependency>
81
			<groupId>org.postgresql</groupId>
82
			<artifactId>postgresql</artifactId>
83
			<version>9.4.1211.jre7</version>
84
		</dependency>
85
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
86
		<dependency>
87
			<groupId>org.apache.commons</groupId>
88
			<artifactId>commons-dbcp2</artifactId>
89
			<version>2.1.1</version>
90
		</dependency>
91
	        <dependency>
92
        	    <groupId>commons-dbcp</groupId>
93
        	    <artifactId>commons-dbcp</artifactId>
94
        	    <version>20030825.184428</version>
95
	        </dependency>
96
		<dependency>
97
			<groupId>com.unboundid</groupId>
98
			<artifactId>unboundid-ldapsdk</artifactId>
99
			<version>1.1.3</version>
100
		</dependency>
101
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
102
		<dependency>
103
			<groupId>apache</groupId>
104
			<artifactId>commons-pool</artifactId>
105
			<version>1.5.3</version>
106
		</dependency>
107
		<dependency>
108
			<groupId>io.jsonwebtoken</groupId>
109
			<artifactId>jjwt</artifactId>
110
			<version>0.6.0</version>
111
		</dependency>
112
		<dependency>
113
			<groupId>commons-validator</groupId>
114
			<artifactId>commons-validator</artifactId>
115
			<version>1.6</version>
116
		</dependency>
117
		<!-- https://mvnrepository.com/artifact/com.sun.mail/javax.mail -->
118
		<dependency>
119
			<groupId>com.sun.mail</groupId>
120
			<artifactId>javax.mail</artifactId>
121
			<version>1.5.1</version>
122
		</dependency>
123
		<!-- https://mvnrepository.com/artifact/org.glassfish/javax.json -->
124
		<dependency>
125
			<groupId>org.glassfish</groupId>
126
			<artifactId>javax.json</artifactId>
127
			<version>1.0.4</version>
128
		</dependency>
129
	</dependencies>
130
</project>
(3-3/3)