Keycloak

Форк
0
/
pom.xml 
121 строка · 4.5 Кб
1
<?xml version='1.0' encoding='UTF-8'?>
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
<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">
19
    <modelVersion>4.0.0</modelVersion>
20

21
    <parent>
22
        <groupId>org.jboss</groupId>
23
        <artifactId>jboss-parent</artifactId>
24
        <version>39</version>
25
        <relativePath/>
26
    </parent>
27

28
    <groupId>org.keycloak.bom</groupId>
29
    <artifactId>keycloak-bom-parent</artifactId>
30
    <version>999.0.0-SNAPSHOT</version>
31

32
    <packaging>pom</packaging>
33

34
    <name>Keycloak BOM Parent</name>
35
    <description>Keycloak BOM Parent</description>
36

37
    <url>http://keycloak.org</url>
38

39
    <licenses>
40
        <license>
41
            <name>Apache License, Version 2.0</name>
42
            <url>https://www.apache.org/licenses/LICENSE-2.0</url>
43
            <distribution>repo</distribution>
44
        </license>
45
    </licenses>
46

47
    <properties>
48
        <jboss.repo.nexusUrl>https://s01.oss.sonatype.org/</jboss.repo.nexusUrl>
49
        <jboss.releases.repo.id>jboss-releases-repository</jboss.releases.repo.id>
50
        <jboss.releases.repo.url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</jboss.releases.repo.url>
51
        <jboss.snapshots.repo.id>jboss-snapshots-repository</jboss.snapshots.repo.id>
52
        <jboss.snapshots.repo.url>https://s01.oss.sonatype.org/content/repositories/snapshots/</jboss.snapshots.repo.url>
53
    </properties>
54

55
    <modules>
56
        <module>adapter</module>
57
        <module>spi</module>
58
        <module>misc</module>
59
    </modules>
60
    
61
    <build>
62
        <pluginManagement>
63
            <plugins>
64
                <plugin>
65
                    <groupId>org.sonatype.plugins</groupId>
66
                    <artifactId>nexus-staging-maven-plugin</artifactId>
67
                    <version>1.6.13</version>
68
                    <extensions>true</extensions>
69
                    <configuration>
70
                        <serverId>jboss-releases-repository</serverId>
71
                        <nexusUrl>${jboss.repo.nexusUrl}</nexusUrl>
72
                    </configuration>
73
                </plugin>
74
            </plugins>
75
        </pluginManagement>
76
    </build>
77
    
78
    <profiles>
79
        <profile>
80
            <id>gpg</id>
81
            <build>
82
                <plugins>
83
                    <plugin>
84
                        <groupId>org.apache.maven.plugins</groupId>
85
                        <artifactId>maven-gpg-plugin</artifactId>
86
                        <version>3.0.1</version>
87
                        <executions>
88
                            <execution>
89
                                <id>sign-artifacts</id>
90
                                <phase>verify</phase>
91
                                <goals>
92
                                    <goal>sign</goal>
93
                                </goals>
94
                                <configuration>
95
                                    <gpgArguments>
96
                                        <arg>--batch</arg>
97
                                        <arg>--pinentry-mode</arg>
98
                                        <arg>loopback</arg>
99
                                    </gpgArguments>
100
                                </configuration>
101
                            </execution>
102
                        </executions>
103
                        <configuration>
104
                        </configuration>
105
                    </plugin>
106
                </plugins>
107
            </build>
108
        </profile>
109
        <profile>
110
            <id>nexus-staging</id>
111
            <build>
112
                <plugins>
113
                    <plugin>
114
                        <groupId>org.sonatype.plugins</groupId>
115
                        <artifactId>nexus-staging-maven-plugin</artifactId>
116
                    </plugin>
117
                </plugins>
118
            </build>
119
        </profile>
120
    </profiles>
121
</project>
122

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

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

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

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