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-container-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-user-management</artifactId>
11
	<packaging>jar</packaging>
12
	<version>2.0.0-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-user-management/branches/redis</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
		<!-- Spring MVC framework>
25
		<dependency>
26
			<groupId>org.springframework</groupId>
27
			<artifactId>spring-webmvc</artifactId>
28
			<version>4.2.1.RELEASE</version>
29
		</dependency-->
30

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