Keycloak

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

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

30
    <artifactId>keycloak-quarkus-parent</artifactId>
31
    <packaging>pom</packaging>
32

33
    <properties>
34
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35
        <maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
36
        <maven.compiler.release>17</maven.compiler.release>
37
        <maven.compiler.source>17</maven.compiler.source>
38
        <maven.compiler.target>17</maven.compiler.target>
39
    </properties>
40

41
    <build>
42
        <pluginManagement>
43
            <plugins>
44
                <plugin>
45
                    <groupId>org.apache.maven.plugins</groupId>
46
                    <artifactId>maven-compiler-plugin</artifactId>
47
                    <version>${maven.compiler.plugin.version}</version>
48
                </plugin>
49
            </plugins>
50
        </pluginManagement>
51
    </build>
52
    
53
    <modules>
54
        <module>config-api</module>
55
        <module>runtime</module>
56
        <module>deployment</module>
57
        <module>server</module>
58
        <module>dist</module>
59
        <module>tests</module>
60
    </modules>
61

62
    <repositories>
63
        <repository>
64
            <id>central</id>
65
            <name>Maven Central</name>
66
            <url>https://repo.maven.apache.org/maven2</url>
67
            <snapshots>
68
                <enabled>false</enabled>
69
            </snapshots>
70
        </repository>
71
        <repository>
72
            <id>jboss-public-repository</id>
73
            <name>Jboss Public</name>
74
            <url>https://repository.jboss.org/nexus/content/groups/public/</url>
75
            <snapshots>
76
                <enabled>false</enabled>
77
            </snapshots>
78
        </repository>
79
    </repositories>
80
    
81
</project>
82

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

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

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

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