1 |
43476
|
katerina.i
|
<?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 |
44654
|
sofia.balt
|
<artifactId>dnet-container-parent</artifactId>
|
6 |
43476
|
katerina.i
|
<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 |
44654
|
sofia.balt
|
<packaging>war</packaging>
|
12 |
43476
|
katerina.i
|
<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 |
47651
|
sofia.balt
|
<repository>
|
37 |
|
|
<id>spring-security</id>
|
38 |
|
|
<url>https://mvnrepository.com/artifact/org.springframework.security/spring-security-core</url>
|
39 |
|
|
</repository>
|
40 |
43476
|
katerina.i
|
</repositories>
|
41 |
|
|
<dependencies>
|
42 |
|
|
<dependency>
|
43 |
|
|
<groupId>junit</groupId>
|
44 |
|
|
<artifactId>junit</artifactId>
|
45 |
|
|
<version>${junit.version}</version>
|
46 |
|
|
<scope>test</scope>
|
47 |
|
|
</dependency>
|
48 |
|
|
|
49 |
|
|
<!-- Spring MVC framework -->
|
50 |
|
|
<dependency>
|
51 |
|
|
<groupId>org.springframework</groupId>
|
52 |
|
|
<artifactId>spring-webmvc</artifactId>
|
53 |
47651
|
sofia.balt
|
<version>4.2.1.RELEASE</version>
|
54 |
43476
|
katerina.i
|
</dependency>
|
55 |
|
|
|
56 |
43489
|
sofia.balt
|
<dependency>
|
57 |
46502
|
katerina.i
|
<groupId>com.sun.jersey.contribs</groupId>
|
58 |
|
|
<artifactId>jersey-spring</artifactId>
|
59 |
43489
|
sofia.balt
|
<version>1.8</version>
|
60 |
46502
|
katerina.i
|
<exclusions>
|
61 |
|
|
<exclusion>
|
62 |
|
|
<groupId>org.springframework</groupId>
|
63 |
|
|
<artifactId>spring</artifactId>
|
64 |
|
|
</exclusion>
|
65 |
|
|
<exclusion>
|
66 |
|
|
<groupId>org.springframework</groupId>
|
67 |
|
|
<artifactId>spring-core</artifactId>
|
68 |
|
|
</exclusion>
|
69 |
|
|
<exclusion>
|
70 |
|
|
<groupId>org.springframework</groupId>
|
71 |
|
|
<artifactId>spring-web</artifactId>
|
72 |
|
|
</exclusion>
|
73 |
|
|
<exclusion>
|
74 |
|
|
<groupId>org.springframework</groupId>
|
75 |
|
|
<artifactId>spring-beans</artifactId>
|
76 |
|
|
</exclusion>
|
77 |
|
|
<exclusion>
|
78 |
|
|
<groupId>org.springframework</groupId>
|
79 |
|
|
<artifactId>spring-context</artifactId>
|
80 |
|
|
</exclusion>
|
81 |
|
|
<exclusion>
|
82 |
|
|
<groupId>org.springframework</groupId>
|
83 |
|
|
<artifactId>spring-utils</artifactId>
|
84 |
|
|
</exclusion>
|
85 |
|
|
<exclusion>
|
86 |
|
|
<groupId>org.springframework</groupId>
|
87 |
|
|
<artifactId>spring-aop</artifactId>
|
88 |
|
|
</exclusion>
|
89 |
|
|
</exclusions>
|
90 |
43489
|
sofia.balt
|
</dependency>
|
91 |
|
|
|
92 |
|
|
<dependency>
|
93 |
47651
|
sofia.balt
|
<groupId>org.mitre</groupId>
|
94 |
|
|
<artifactId>openid-connect-client</artifactId>
|
95 |
|
|
<version>1.3.0</version>
|
96 |
|
|
</dependency>
|
97 |
|
|
|
98 |
|
|
<dependency>
|
99 |
46632
|
katerina.i
|
<groupId>org.springframework.security</groupId>
|
100 |
|
|
<artifactId>spring-security-core</artifactId>
|
101 |
47651
|
sofia.balt
|
<version>4.2.1.RELEASE</version>
|
102 |
46632
|
katerina.i
|
</dependency>
|
103 |
|
|
<dependency>
|
104 |
|
|
<groupId>org.springframework.security</groupId>
|
105 |
|
|
<artifactId>spring-security-web</artifactId>
|
106 |
47651
|
sofia.balt
|
<version>4.2.1.RELEASE</version>
|
107 |
46632
|
katerina.i
|
</dependency>
|
108 |
|
|
<dependency>
|
109 |
|
|
<groupId>org.springframework.security</groupId>
|
110 |
|
|
<artifactId>spring-security-config</artifactId>
|
111 |
47651
|
sofia.balt
|
<version>4.2.1.RELEASE</version>
|
112 |
46632
|
katerina.i
|
</dependency>
|
113 |
|
|
|
114 |
47651
|
sofia.balt
|
|
115 |
46632
|
katerina.i
|
<dependency>
|
116 |
43489
|
sofia.balt
|
<groupId>com.google.code.gson</groupId>
|
117 |
|
|
<artifactId>gson</artifactId>
|
118 |
|
|
<version>2.6.2</version>
|
119 |
|
|
</dependency>
|
120 |
|
|
|
121 |
|
|
<dependency>
|
122 |
|
|
<groupId>javax.servlet</groupId>
|
123 |
|
|
<artifactId>javax.servlet-api</artifactId>
|
124 |
|
|
<version>3.0.1</version>
|
125 |
|
|
<scope>provided</scope>
|
126 |
|
|
</dependency>
|
127 |
|
|
|
128 |
44654
|
sofia.balt
|
<dependency>
|
129 |
|
|
<groupId>mysql</groupId>
|
130 |
|
|
<artifactId>mysql-connector-java</artifactId>
|
131 |
|
|
<version>5.1.35</version>
|
132 |
|
|
</dependency>
|
133 |
43476
|
katerina.i
|
|
134 |
45069
|
sofia.balt
|
<dependency>
|
135 |
|
|
<groupId>org.postgresql</groupId>
|
136 |
|
|
<artifactId>postgresql</artifactId>
|
137 |
|
|
<version>9.4.1211.jre7</version>
|
138 |
|
|
</dependency>
|
139 |
44654
|
sofia.balt
|
<!-- https://mvnrepository.com/artifact/com.sun.jndi/ldap -->
|
140 |
|
|
<!--dependency>
|
141 |
|
|
<groupId>com.sun.jndi</groupId>
|
142 |
|
|
<artifactId>ldap</artifactId>
|
143 |
|
|
<version>1.2.4</version>
|
144 |
|
|
</dependency-->
|
145 |
|
|
<dependency>
|
146 |
|
|
<groupId>org.apache.tomcat</groupId>
|
147 |
|
|
<artifactId>tomcat-dbcp</artifactId>
|
148 |
|
|
<version>7.0.37</version>
|
149 |
|
|
</dependency>
|
150 |
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
|
151 |
|
|
<dependency>
|
152 |
|
|
<groupId>org.apache.commons</groupId>
|
153 |
|
|
<artifactId>commons-dbcp2</artifactId>
|
154 |
|
|
<version>2.1.1</version>
|
155 |
|
|
</dependency>
|
156 |
|
|
<dependency>
|
157 |
|
|
<groupId>commons-dbcp</groupId>
|
158 |
|
|
<artifactId>commons-dbcp</artifactId>
|
159 |
|
|
<version>20030825.184428</version>
|
160 |
|
|
</dependency>
|
161 |
|
|
<dependency>
|
162 |
|
|
<groupId>com.unboundid</groupId>
|
163 |
|
|
<artifactId>unboundid-ldapsdk</artifactId>
|
164 |
|
|
<version>1.1.3</version>
|
165 |
|
|
</dependency>
|
166 |
46632
|
katerina.i
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
|
167 |
|
|
<dependency>
|
168 |
|
|
<groupId>apache</groupId>
|
169 |
|
|
<artifactId>commons-pool</artifactId>
|
170 |
|
|
<version>1.5.3</version>
|
171 |
|
|
</dependency>
|
172 |
|
|
<dependency>
|
173 |
|
|
<groupId>io.jsonwebtoken</groupId>
|
174 |
|
|
<artifactId>jjwt</artifactId>
|
175 |
|
|
<version>0.6.0</version>
|
176 |
|
|
</dependency>
|
177 |
47651
|
sofia.balt
|
|
178 |
46632
|
katerina.i
|
</dependencies>
|
179 |
44654
|
sofia.balt
|
|
180 |
43476
|
katerina.i
|
<build>
|
181 |
|
|
<plugins>
|
182 |
48862
|
sofia.balt
|
<!--<plugin>-->
|
183 |
|
|
<!--<artifactId>maven-assembly-plugin</artifactId>-->
|
184 |
|
|
<!--<configuration>-->
|
185 |
|
|
<!--<archive>-->
|
186 |
43476
|
katerina.i
|
|
187 |
48862
|
sofia.balt
|
<!--</archive>-->
|
188 |
|
|
<!--<descriptorRefs>-->
|
189 |
|
|
<!--<descriptorRef>jar-with-dependencies</descriptorRef>-->
|
190 |
|
|
<!--</descriptorRefs>-->
|
191 |
|
|
<!--</configuration>-->
|
192 |
|
|
<!--</plugin>-->
|
193 |
44654
|
sofia.balt
|
<plugin>
|
194 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
195 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
196 |
|
|
<configuration>
|
197 |
|
|
<source>1.7</source>
|
198 |
|
|
<target>1.7</target>
|
199 |
|
|
</configuration>
|
200 |
|
|
</plugin>
|
201 |
|
|
</plugins>
|
202 |
43476
|
katerina.i
|
</build>
|
203 |
|
|
</project>
|