Keycloak

Форк
0
120 строк · 4.2 Кб
1
<?xml version="1.0"?>
2
<!--
3
  ~ Copyright 2021 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
20
         xmlns="http://maven.apache.org/POM/4.0.0"
21
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
22
    <modelVersion>4.0.0</modelVersion>
23

24
    <parent>
25
        <artifactId>keycloak-quarkus-test-parent</artifactId>
26
        <groupId>org.keycloak</groupId>
27
        <version>999.0.0-SNAPSHOT</version>
28
        <relativePath>../pom.xml</relativePath>
29
    </parent>
30

31
    <name>Keycloak Quarkus Server JUnit 5 Internal Test Framework</name>
32
    <artifactId>keycloak-junit5</artifactId>
33
    <packaging>jar</packaging>
34

35
    <properties>
36
        <kc.quarkus.tests.dist>raw</kc.quarkus.tests.dist>
37
        <approvaltests.version>14.0.0</approvaltests.version>
38
        <build-helper-maven-plugin.version>3.3.0</build-helper-maven-plugin.version>
39
        <maven-resolver-util.version>1.9.10</maven-resolver-util.version>
40
    </properties>
41

42
    <dependencies>
43
        <dependency>
44
            <groupId>org.keycloak</groupId>
45
            <artifactId>keycloak-quarkus-server</artifactId>
46
        </dependency>
47
        <dependency>
48
            <groupId>org.keycloak</groupId>
49
            <artifactId>keycloak-core</artifactId>
50
        </dependency>
51
        <dependency>
52
            <groupId>org.keycloak</groupId>
53
            <artifactId>keycloak-quarkus-dist</artifactId>
54
            <type>zip</type>
55
        </dependency>
56

57
        <dependency>
58
            <groupId>junit</groupId>
59
            <artifactId>junit</artifactId>
60
            <version>${junit.version}</version>
61
            <scope>compile</scope>
62
        </dependency>
63
        <dependency>
64
            <groupId>io.quarkus</groupId>
65
            <artifactId>quarkus-junit5-internal</artifactId>
66
        </dependency>
67
        <dependency>
68
            <groupId>io.quarkus</groupId>
69
            <artifactId>quarkus-junit5</artifactId>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.testcontainers</groupId>
73
            <artifactId>junit-jupiter</artifactId>
74
        </dependency>
75
        <dependency>
76
            <groupId>org.testcontainers</groupId>
77
            <artifactId>postgresql</artifactId>
78
        </dependency>
79
        <dependency>
80
            <groupId>org.testcontainers</groupId>
81
            <artifactId>cockroachdb</artifactId>
82
        </dependency>
83
        <dependency>
84
            <groupId>org.testcontainers</groupId>
85
            <artifactId>mariadb</artifactId>
86
        </dependency>
87
        <dependency>
88
            <groupId>org.testcontainers</groupId>
89
            <artifactId>mysql</artifactId>
90
        </dependency>
91
        <dependency>
92
            <groupId>org.testcontainers</groupId>
93
            <artifactId>mssqlserver</artifactId>
94
        </dependency>
95

96
        <!-- JDBC Drivers -->
97
        <dependency>
98
            <groupId>com.microsoft.sqlserver</groupId>
99
            <artifactId>mssql-jdbc</artifactId>
100
        </dependency>
101
        <dependency>
102
            <groupId>com.oracle.database.jdbc</groupId>
103
            <artifactId>ojdbc11</artifactId>
104
        </dependency>
105
        <dependency>
106
            <groupId>com.oracle.database.nls</groupId>
107
            <artifactId>orai18n</artifactId>
108
        </dependency>
109

110
        <dependency>
111
            <groupId>org.apache.maven.wagon</groupId>
112
            <artifactId>wagon-http-shared</artifactId>
113
        </dependency>
114
        <dependency>
115
            <groupId>org.apache.maven.resolver</groupId>
116
            <artifactId>maven-resolver-util</artifactId>
117
            <version>${maven-resolver-util.version}</version>
118
        </dependency>
119
    </dependencies>
120
</project>
121

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

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

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

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