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-container-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>war</packaging>
|
12
|
<version>1.0.0-SNAPSHOT</version>
|
13
|
<scm>
|
14
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-user-management/trunk</developerConnection>
|
15
|
</scm>
|
16
|
<repositories>
|
17
|
<!-- Cloudera Repositories -->
|
18
|
<repository>
|
19
|
<snapshots>
|
20
|
<enabled>false</enabled>
|
21
|
</snapshots>
|
22
|
<id>cloudera-central</id>
|
23
|
<name>cloundera-libs-release</name>
|
24
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
|
25
|
</repository>
|
26
|
<repository>
|
27
|
<id>cloudera-snapshots</id>
|
28
|
<name>cloudera-libs-snapshot</name>
|
29
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
|
30
|
</repository>
|
31
|
<repository>
|
32
|
<id>typesafe</id>
|
33
|
<name>typesafe-releases</name>
|
34
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
|
35
|
</repository>
|
36
|
</repositories>
|
37
|
<dependencies>
|
38
|
<dependency>
|
39
|
<groupId>junit</groupId>
|
40
|
<artifactId>junit</artifactId>
|
41
|
<version>${junit.version}</version>
|
42
|
<scope>test</scope>
|
43
|
</dependency>
|
44
|
|
45
|
<!-- Spring MVC framework -->
|
46
|
<dependency>
|
47
|
<groupId>org.springframework</groupId>
|
48
|
<artifactId>spring-webmvc</artifactId>
|
49
|
<version>${spring.version}</version>
|
50
|
</dependency>
|
51
|
|
52
|
<dependency>
|
53
|
<groupId>com.sun.jersey.contribs</groupId>
|
54
|
<artifactId>jersey-spring</artifactId>
|
55
|
<version>1.8</version>
|
56
|
<exclusions>
|
57
|
<exclusion>
|
58
|
<groupId>org.springframework</groupId>
|
59
|
<artifactId>spring</artifactId>
|
60
|
</exclusion>
|
61
|
<exclusion>
|
62
|
<groupId>org.springframework</groupId>
|
63
|
<artifactId>spring-core</artifactId>
|
64
|
</exclusion>
|
65
|
<exclusion>
|
66
|
<groupId>org.springframework</groupId>
|
67
|
<artifactId>spring-web</artifactId>
|
68
|
</exclusion>
|
69
|
<exclusion>
|
70
|
<groupId>org.springframework</groupId>
|
71
|
<artifactId>spring-beans</artifactId>
|
72
|
</exclusion>
|
73
|
<exclusion>
|
74
|
<groupId>org.springframework</groupId>
|
75
|
<artifactId>spring-context</artifactId>
|
76
|
</exclusion>
|
77
|
<exclusion>
|
78
|
<groupId>org.springframework</groupId>
|
79
|
<artifactId>spring-utils</artifactId>
|
80
|
</exclusion>
|
81
|
<exclusion>
|
82
|
<groupId>org.springframework</groupId>
|
83
|
<artifactId>spring-aop</artifactId>
|
84
|
</exclusion>
|
85
|
</exclusions>
|
86
|
</dependency>
|
87
|
|
88
|
<dependency>
|
89
|
<groupId>org.springframework.security</groupId>
|
90
|
<artifactId>spring-security-core</artifactId>
|
91
|
<version>${spring.version}</version>
|
92
|
</dependency>
|
93
|
<dependency>
|
94
|
<groupId>org.springframework.security</groupId>
|
95
|
<artifactId>spring-security-web</artifactId>
|
96
|
<version>${spring.version}</version>
|
97
|
</dependency>
|
98
|
<dependency>
|
99
|
<groupId>org.springframework.security</groupId>
|
100
|
<artifactId>spring-security-config</artifactId>
|
101
|
<version>${spring.version}</version>
|
102
|
</dependency>
|
103
|
|
104
|
<dependency>
|
105
|
<groupId>com.google.code.gson</groupId>
|
106
|
<artifactId>gson</artifactId>
|
107
|
<version>2.6.2</version>
|
108
|
</dependency>
|
109
|
|
110
|
<dependency>
|
111
|
<groupId>javax.servlet</groupId>
|
112
|
<artifactId>javax.servlet-api</artifactId>
|
113
|
<version>3.0.1</version>
|
114
|
<scope>provided</scope>
|
115
|
</dependency>
|
116
|
|
117
|
<dependency>
|
118
|
<groupId>mysql</groupId>
|
119
|
<artifactId>mysql-connector-java</artifactId>
|
120
|
<version>5.1.35</version>
|
121
|
</dependency>
|
122
|
|
123
|
<dependency>
|
124
|
<groupId>org.postgresql</groupId>
|
125
|
<artifactId>postgresql</artifactId>
|
126
|
<version>9.4.1211.jre7</version>
|
127
|
</dependency>
|
128
|
<!-- https://mvnrepository.com/artifact/com.sun.jndi/ldap -->
|
129
|
<!--dependency>
|
130
|
<groupId>com.sun.jndi</groupId>
|
131
|
<artifactId>ldap</artifactId>
|
132
|
<version>1.2.4</version>
|
133
|
</dependency-->
|
134
|
<dependency>
|
135
|
<groupId>org.apache.tomcat</groupId>
|
136
|
<artifactId>tomcat-dbcp</artifactId>
|
137
|
<version>7.0.37</version>
|
138
|
</dependency>
|
139
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
|
140
|
<dependency>
|
141
|
<groupId>org.apache.commons</groupId>
|
142
|
<artifactId>commons-dbcp2</artifactId>
|
143
|
<version>2.1.1</version>
|
144
|
</dependency>
|
145
|
<dependency>
|
146
|
<groupId>commons-dbcp</groupId>
|
147
|
<artifactId>commons-dbcp</artifactId>
|
148
|
<version>20030825.184428</version>
|
149
|
</dependency>
|
150
|
<dependency>
|
151
|
<groupId>com.unboundid</groupId>
|
152
|
<artifactId>unboundid-ldapsdk</artifactId>
|
153
|
<version>1.1.3</version>
|
154
|
</dependency>
|
155
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
|
156
|
<dependency>
|
157
|
<groupId>apache</groupId>
|
158
|
<artifactId>commons-pool</artifactId>
|
159
|
<version>1.5.3</version>
|
160
|
</dependency>
|
161
|
<dependency>
|
162
|
<groupId>io.jsonwebtoken</groupId>
|
163
|
<artifactId>jjwt</artifactId>
|
164
|
<version>0.6.0</version>
|
165
|
</dependency>
|
166
|
</dependencies>
|
167
|
|
168
|
<build>
|
169
|
<plugins>
|
170
|
<plugin>
|
171
|
<artifactId>maven-assembly-plugin</artifactId>
|
172
|
<configuration>
|
173
|
<archive>
|
174
|
|
175
|
</archive>
|
176
|
<descriptorRefs>
|
177
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
178
|
</descriptorRefs>
|
179
|
</configuration>
|
180
|
</plugin>
|
181
|
<plugin>
|
182
|
<groupId>org.apache.maven.plugins</groupId>
|
183
|
<artifactId>maven-compiler-plugin</artifactId>
|
184
|
<configuration>
|
185
|
<source>1.7</source>
|
186
|
<target>1.7</target>
|
187
|
</configuration>
|
188
|
</plugin>
|
189
|
</plugins>
|
190
|
</build>
|
191
|
</project>
|