Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
         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-login-core</artifactId>
11
  <packaging>jar</packaging>
12
  <version>1.0-SNAPSHOT</version>
13
  <name>uoa-login-core</name>
14
  <url>http://maven.apache.org</url>
15

    
16
  <dependencies>
17
    <dependency>
18
      <groupId>junit</groupId>
19
      <artifactId>junit</artifactId>
20
      <version>3.8.1</version>
21
      <scope>test</scope>
22
    </dependency>
23

    
24
    <!-- About spring security -->
25
    <dependency>
26
      <groupId>org.springframework.security</groupId>
27
      <artifactId>spring-security-core</artifactId>
28
      <version>4.2.1.RELEASE</version>
29
    </dependency>
30
    <dependency>
31
      <groupId>org.springframework.security</groupId>
32
      <artifactId>spring-security-config</artifactId>
33
      <version>4.2.1.RELEASE</version>
34
    </dependency>
35
    <dependency>
36
      <groupId>org.springframework.security</groupId>
37
      <artifactId>spring-security-web</artifactId>
38
      <version>4.2.1.RELEASE</version>
39
    </dependency>
40

    
41
    <!-- About redis -->
42
    <dependency>
43
      <groupId>org.springframework.session</groupId>
44
      <artifactId>spring-session-data-redis</artifactId>
45
      <version>1.3.1.RELEASE</version>
46
      <type>pom</type>
47
    </dependency>
48
    <dependency>
49
      <groupId>biz.paluch.redis</groupId>
50
      <artifactId>lettuce</artifactId>
51
      <version>3.5.0.Final</version>
52
    </dependency>
53

    
54
    <dependency>
55
      <groupId>javax.servlet</groupId>
56
      <artifactId>javax.servlet-api</artifactId>
57
      <version>3.0.1</version>
58
    </dependency>
59

    
60
    <dependency>
61
      <groupId>org.mitre</groupId>
62
      <artifactId>openid-connect-client</artifactId>
63
      <version>1.3.0</version>
64
      <exclusions>
65
        <exclusion>
66
          <groupId>org.bouncycastle</groupId>
67
          <artifactId>bcprov-jdk15on</artifactId>
68
        </exclusion>
69
      </exclusions>
70
    </dependency>
71

    
72
    <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
73
    <dependency>
74
      <groupId>org.bouncycastle</groupId>
75
      <artifactId>bcprov-jdk15on</artifactId>
76
      <version>1.52</version>
77
    </dependency>
78

    
79
    <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
80
    <dependency>
81
      <groupId>io.jsonwebtoken</groupId>
82
      <artifactId>jjwt</artifactId>
83
      <version>0.9.1</version>
84
    </dependency>
85

    
86
  </dependencies>
87

    
88
</project>
    (1-1/1)