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/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
		<!-- 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

    
67
		<dependency>
68
			<groupId>org.mitre</groupId>
69
			<artifactId>openid-connect-client</artifactId>
70
			<version>1.3.0</version>
71
		</dependency>
72

    
73
		<dependency>
74
			<groupId>org.springframework.security</groupId>
75
			<artifactId>spring-security-core</artifactId>
76
			<version>4.2.1.RELEASE</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>org.springframework.security</groupId>
80
			<artifactId>spring-security-web</artifactId>
81
			<version>4.2.1.RELEASE</version>
82
		</dependency>
83
		<dependency>
84
			<groupId>org.springframework.security</groupId>
85
			<artifactId>spring-security-config</artifactId>
86
			<version>4.2.1.RELEASE</version>
87
		</dependency>
88
		<dependency>
89
			<groupId>com.google.code.gson</groupId>
90
			<artifactId>gson</artifactId>
91
			<version>2.6.2</version>
92
		</dependency>
93
		<dependency>
94
			<groupId>javax.servlet</groupId>
95
			<artifactId>javax.servlet-api</artifactId>
96
			<version>3.0.1</version>
97
			<scope>provided</scope>
98
		</dependency>
99
		<dependency>
100
			<groupId>org.postgresql</groupId>
101
			<artifactId>postgresql</artifactId>
102
			<version>9.4.1211.jre7</version>
103
		</dependency>
104
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
105
		<dependency>
106
			<groupId>org.apache.commons</groupId>
107
			<artifactId>commons-dbcp2</artifactId>
108
			<version>2.1.1</version>
109
		</dependency>
110
	        <dependency>
111
        	    <groupId>commons-dbcp</groupId>
112
        	    <artifactId>commons-dbcp</artifactId>
113
        	    <version>20030825.184428</version>
114
	        </dependency>
115
		<dependency>
116
			<groupId>com.unboundid</groupId>
117
			<artifactId>unboundid-ldapsdk</artifactId>
118
			<version>1.1.3</version>
119
		</dependency>
120
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
121
		<dependency>
122
			<groupId>apache</groupId>
123
			<artifactId>commons-pool</artifactId>
124
			<version>1.5.3</version>
125
		</dependency>
126
		<dependency>
127
			<groupId>io.jsonwebtoken</groupId>
128
			<artifactId>jjwt</artifactId>
129
			<version>0.6.0</version>
130
		</dependency>
131
		<dependency>
132
			<groupId>commons-validator</groupId>
133
			<artifactId>commons-validator</artifactId>
134
			<version>1.6</version>
135
		</dependency>
136
		<dependency>
137
			<groupId>javax.mail</groupId>
138
			<artifactId>mail</artifactId>
139
			<version>1.4</version>
140
		</dependency>
141
	</dependencies>
142
</project>
(2-2/2)