Keycloak

Форк
0
135 строк · 5.0 Кб
1
<?xml version="1.0"?>
2
<!--
3
  ~ Copyright 2016 Red Hat, Inc. and/or its affiliates
4
  ~ and other contributors as indicated by the @author tags.
5
  ~
6
  ~ Licensed under the Apache License, Version 2.0 (the "License");
7
  ~ you may not use this file except in compliance with the License.
8
  ~ You may obtain a copy of the License at
9
  ~
10
  ~ http://www.apache.org/licenses/LICENSE-2.0
11
  ~
12
  ~ Unless required by applicable law or agreed to in writing, software
13
  ~ distributed under the License is distributed on an "AS IS" BASIS,
14
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
  ~ See the License for the specific language governing permissions and
16
  ~ limitations under the License.
17
  -->
18

19
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21
    <parent>
22
        <artifactId>keycloak-parent</artifactId>
23
        <groupId>org.keycloak</groupId>
24
        <version>999.0.0-SNAPSHOT</version>
25
        <relativePath>../../../pom.xml</relativePath>
26
    </parent>
27
    <modelVersion>4.0.0</modelVersion>
28

29
    <artifactId>keycloak-spring-security-adapter</artifactId>
30
    <name>Keycloak Spring Security Integration</name>
31
    <description/>
32

33
    <properties>
34
        <spring.version>5.2.9.RELEASE</spring.version>
35
        <spring-security.version>5.2.9.RELEASE</spring-security.version>
36
        <mockito.version>1.9.5</mockito.version>
37
        <apache-httpcomponents.version>4.3.6</apache-httpcomponents.version>
38
    </properties>
39

40
    <dependencies>
41
        <dependency>
42
            <groupId>org.keycloak</groupId>
43
            <artifactId>keycloak-core</artifactId>
44
        </dependency>
45
        <dependency>
46
            <groupId>org.keycloak</groupId>
47
            <artifactId>keycloak-adapter-spi</artifactId>
48
        </dependency>
49
        <dependency>
50
            <groupId>org.keycloak</groupId>
51
            <artifactId>keycloak-adapter-core</artifactId>
52
        </dependency>
53
        <dependency>
54
            <groupId>org.keycloak</groupId>
55
            <artifactId>keycloak-policy-enforcer</artifactId>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.jboss.spec.javax.servlet</groupId>
59
            <artifactId>jboss-servlet-api_4.0_spec</artifactId>
60
            <scope>provided</scope>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.springframework.security</groupId>
64
            <artifactId>spring-security-config</artifactId>
65
            <version>${spring-security.version}</version>
66
               <optional>true</optional>
67
            <scope>compile</scope>
68
        </dependency>
69
        <dependency>
70
            <groupId>org.springframework.security</groupId>
71
            <artifactId>spring-security-web</artifactId>
72
            <version>${spring-security.version}</version>
73
               <optional>true</optional>
74
            <scope>compile</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.slf4j</groupId>
78
            <artifactId>slf4j-api</artifactId>
79
            <scope>compile</scope>
80
        </dependency>
81
        <dependency>
82
            <groupId>org.jboss.logging</groupId>
83
            <artifactId>jboss-logging</artifactId>
84
            <scope>compile</scope>
85
        </dependency>
86
        <dependency>
87
            <groupId>org.apache.httpcomponents</groupId>
88
            <artifactId>httpclient</artifactId>
89
        </dependency>
90
        <dependency>
91
            <groupId>org.bouncycastle</groupId>
92
            <artifactId>bcprov-jdk18on</artifactId>
93
            <scope>runtime</scope>
94
        </dependency>
95
        <dependency>
96
            <groupId>com.fasterxml.jackson.core</groupId>
97
            <artifactId>jackson-core</artifactId>
98
            <scope>compile</scope>
99
        </dependency>
100
        <dependency>
101
            <groupId>com.fasterxml.jackson.core</groupId>
102
            <artifactId>jackson-databind</artifactId>
103
            <scope>runtime</scope>
104
        </dependency>
105
        <dependency>
106
            <groupId>com.fasterxml.jackson.core</groupId>
107
            <artifactId>jackson-annotations</artifactId>
108
            <scope>runtime</scope>
109
        </dependency>
110

111
        <dependency>
112
            <groupId>org.springframework</groupId>
113
            <artifactId>spring-test</artifactId>
114
            <version>${spring.version}</version>
115
            <scope>test</scope>
116
        </dependency>
117
        <dependency>
118
            <groupId>junit</groupId>
119
            <artifactId>junit</artifactId>
120
            <scope>test</scope>
121
        </dependency>
122
        <dependency>
123
            <groupId>org.mockito</groupId>
124
            <artifactId>mockito-all</artifactId>
125
            <version>${mockito.version}</version>
126
            <scope>test</scope>
127
        </dependency>
128
        <dependency>
129
            <groupId>org.slf4j</groupId>
130
            <artifactId>slf4j-simple</artifactId>
131
            <version>${slf4j.version}</version>
132
            <scope>test</scope>
133
        </dependency>
134
    </dependencies>
135
</project>
136

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.