1 |
49863
|
tsampikos.
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
61620
|
k.triantaf
|
<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/xsd/maven-4.0.0.xsd">
|
3 |
49863
|
tsampikos.
|
<modelVersion>4.0.0</modelVersion>
|
4 |
61619
|
k.triantaf
|
<parent>
|
5 |
|
|
<groupId>eu.dnetlib</groupId>
|
6 |
|
|
<artifactId>dnet45-parent</artifactId>
|
7 |
|
|
<version>1.0.0</version>
|
8 |
|
|
</parent>
|
9 |
59336
|
k.triantaf
|
<artifactId>uoa-authorization-library</artifactId>
|
10 |
61819
|
k.triantaf
|
<version>2.1.1-SNAPSHOT</version>
|
11 |
59336
|
k.triantaf
|
<packaging>jar</packaging>
|
12 |
61619
|
k.triantaf
|
<scm>
|
13 |
61819
|
k.triantaf
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-authorization-library/trunk</developerConnection>
|
14 |
61619
|
k.triantaf
|
</scm>
|
15 |
59336
|
k.triantaf
|
<name>uoa-authorization-library</name>
|
16 |
49863
|
tsampikos.
|
|
17 |
|
|
<properties>
|
18 |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
19 |
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
20 |
|
|
<java.version>1.8</java.version>
|
21 |
61555
|
konstantin
|
<timestampAuthorizationLibrary>${maven.build.timestamp}</timestampAuthorizationLibrary>
|
22 |
|
|
<maven.build.timestamp.format>E MMM dd HH:mm:ss z yyyy</maven.build.timestamp.format>
|
23 |
49863
|
tsampikos.
|
</properties>
|
24 |
61619
|
k.triantaf
|
<dependencyManagement>
|
25 |
|
|
<dependencies>
|
26 |
|
|
<dependency>
|
27 |
|
|
<groupId>org.springframework.boot</groupId>
|
28 |
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
29 |
|
|
<version>1.5.8.RELEASE</version>
|
30 |
|
|
<type>pom</type>
|
31 |
|
|
<scope>import</scope>
|
32 |
|
|
</dependency>
|
33 |
|
|
</dependencies>
|
34 |
|
|
</dependencyManagement>
|
35 |
49863
|
tsampikos.
|
<dependencies>
|
36 |
|
|
<dependency>
|
37 |
|
|
<groupId>org.springframework.boot</groupId>
|
38 |
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
39 |
50222
|
konstantin
|
<exclusions>
|
40 |
|
|
<exclusion>
|
41 |
|
|
<groupId> org.springframework.boot</groupId>
|
42 |
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
43 |
|
|
</exclusion>
|
44 |
|
|
</exclusions>
|
45 |
49863
|
tsampikos.
|
</dependency>
|
46 |
59336
|
k.triantaf
|
<!-- Starter for using Spring Security -->
|
47 |
50222
|
konstantin
|
<dependency>
|
48 |
59336
|
k.triantaf
|
<groupId>org.springframework.boot</groupId>
|
49 |
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
50 |
50222
|
konstantin
|
</dependency>
|
51 |
51049
|
argiro.kok
|
<dependency>
|
52 |
61816
|
k.triantaf
|
<groupId>org.springframework.boot</groupId>
|
53 |
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
54 |
|
|
</dependency>
|
55 |
|
|
<dependency>
|
56 |
|
|
<groupId>org.springframework.session</groupId>
|
57 |
|
|
<artifactId>spring-session-data-redis</artifactId>
|
58 |
|
|
</dependency>
|
59 |
|
|
<dependency>
|
60 |
|
|
<groupId>biz.paluch.redis</groupId>
|
61 |
|
|
<artifactId>lettuce</artifactId>
|
62 |
|
|
<version>4.3.3.Final</version>
|
63 |
|
|
</dependency>
|
64 |
|
|
<dependency>
|
65 |
|
|
<groupId>org.mitre</groupId>
|
66 |
|
|
<artifactId>openid-connect-client</artifactId>
|
67 |
|
|
<version>1.3.0</version>
|
68 |
|
|
<exclusions>
|
69 |
|
|
<exclusion>
|
70 |
|
|
<groupId>org.bouncycastle</groupId>
|
71 |
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
72 |
|
|
</exclusion>
|
73 |
|
|
</exclusions>
|
74 |
|
|
</dependency>
|
75 |
|
|
<dependency>
|
76 |
51049
|
argiro.kok
|
<groupId>com.google.code.gson</groupId>
|
77 |
|
|
<artifactId>gson</artifactId>
|
78 |
|
|
<version>2.8.2</version>
|
79 |
|
|
</dependency>
|
80 |
59336
|
k.triantaf
|
<dependency>
|
81 |
|
|
<groupId>log4j</groupId>
|
82 |
|
|
<artifactId>log4j</artifactId>
|
83 |
|
|
<version>1.2.17</version>
|
84 |
|
|
</dependency>
|
85 |
53555
|
konstantin
|
</dependencies>
|
86 |
49863
|
tsampikos.
|
<build>
|
87 |
|
|
<plugins>
|
88 |
61816
|
k.triantaf
|
<plugin>
|
89 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
90 |
|
|
<artifactId>maven-jar-plugin</artifactId>
|
91 |
|
|
<executions>
|
92 |
|
|
<execution>
|
93 |
|
|
<id>default-jar</id>
|
94 |
|
|
<phase>package</phase>
|
95 |
|
|
<goals>
|
96 |
|
|
<goal>jar</goal>
|
97 |
|
|
</goals>
|
98 |
|
|
<configuration>
|
99 |
|
|
<excludes>
|
100 |
|
|
<exclude>**/eu/dnetlib/uoaauthorizationlibrary/redis/**</exclude>
|
101 |
|
|
</excludes>
|
102 |
|
|
</configuration>
|
103 |
|
|
</execution>
|
104 |
|
|
<execution>
|
105 |
|
|
<id>redis</id>
|
106 |
|
|
<phase>package</phase>
|
107 |
|
|
<goals>
|
108 |
|
|
<goal>jar</goal>
|
109 |
|
|
</goals>
|
110 |
|
|
<configuration>
|
111 |
|
|
<classifier>redis</classifier>
|
112 |
|
|
<excludes>
|
113 |
|
|
<exclude>**/eu/dnetlib/uoaauthorizationlibrary/stateless/**</exclude>
|
114 |
|
|
</excludes>
|
115 |
|
|
</configuration>
|
116 |
|
|
</execution>
|
117 |
|
|
</executions>
|
118 |
|
|
</plugin>
|
119 |
49863
|
tsampikos.
|
</plugins>
|
120 |
59336
|
k.triantaf
|
<finalName>uoa-authorization-library</finalName>
|
121 |
61555
|
konstantin
|
<resources>
|
122 |
|
|
<resource>
|
123 |
|
|
<directory>src/main/resources</directory>
|
124 |
|
|
<filtering>true</filtering>
|
125 |
|
|
</resource>
|
126 |
|
|
</resources>
|
127 |
49863
|
tsampikos.
|
</build>
|
128 |
|
|
</project>
|