Keycloak

Форк
0
126 строк · 5.1 Кб
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-saml-core</artifactId>
30
    <name>Keycloak SAML Core</name>
31
    <description/>
32

33
    <properties>
34
        <timestamp>${maven.build.timestamp}</timestamp>
35
        <skip.security-manager.tests>true</skip.security-manager.tests>
36
        <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
37
    </properties>
38
    <dependencies>
39
        <dependency>
40
            <groupId>org.jboss.logging</groupId>
41
            <artifactId>jboss-logging</artifactId>
42
            <scope>provided</scope>
43
        </dependency>
44
        <dependency>
45
            <groupId>org.keycloak</groupId>
46
            <artifactId>keycloak-common</artifactId>
47
            <scope>provided</scope>
48
        </dependency>
49
        <dependency>
50
            <groupId>org.keycloak</groupId>
51
            <artifactId>keycloak-saml-core-public</artifactId>
52
        </dependency>
53
        <dependency>
54
            <groupId>org.apache.santuario</groupId>
55
            <artifactId>xmlsec</artifactId>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.keycloak</groupId>
59
            <artifactId>${keycloak.crypto.artifactId}</artifactId>
60
            <scope>test</scope>
61
        </dependency>
62
        <dependency>
63
            <groupId>junit</groupId>
64
            <artifactId>junit</artifactId>
65
            <scope>test</scope>
66
        </dependency>
67
        <dependency>
68
            <groupId>org.hamcrest</groupId>
69
            <artifactId>hamcrest</artifactId>
70
            <scope>test</scope>
71
        </dependency>
72
        <dependency>
73
            <groupId>commons-io</groupId>
74
            <artifactId>commons-io</artifactId>
75
            <scope>test</scope>
76
        </dependency>
77
        <dependency>
78
            <groupId>jakarta.xml.bind</groupId>
79
            <artifactId>jakarta.xml.bind-api</artifactId>
80
        </dependency>
81
        <dependency>
82
            <groupId>jakarta.xml.ws</groupId>
83
            <artifactId>jakarta.xml.ws-api</artifactId>
84
        </dependency>
85
    </dependencies>
86
    <build>
87
        <resources>
88
            <resource>
89
                <directory>src/main/resources</directory>
90
                <filtering>true</filtering>
91
            </resource>
92
        </resources>
93
        <plugins>
94
            <plugin>
95
                <groupId>org.apache.maven.plugins</groupId>
96
                <artifactId>maven-surefire-plugin</artifactId>
97
                <executions>
98
                    <execution>
99
                        <id>without-security-manager</id>
100
                        <goals><goal>test</goal></goals>
101
                        <configuration></configuration>
102
                    </execution>
103
                    <execution>
104
                        <id>with-security-manager-all-permissions</id>
105
                        <goals><goal>test</goal></goals>
106
                        <configuration>
107
                            <argLine>-Dmaven.basedir=${basedir} -Djava.security.manager -Djava.security.policy=${basedir}/src/test/resources/all-permissions.policy -XX:+ExitOnOutOfMemoryError -XX:+HeapDumpOnOutOfMemoryError</argLine>
108
                            <test>SecurityActionsTest</test>
109
                            <skip>${skip.security-manager.tests}</skip>
110
                        </configuration>
111
                    </execution>
112
                    <execution>
113
                        <id>with-security-manager-named-permissions</id>
114
                        <goals><goal>test</goal></goals>
115
                        <configuration>
116
                            <argLine>-Djava.security.debug=access -Dmaven.basedir=${basedir} -Djava.security.manager -Djava.security.policy=${basedir}/src/test/resources/named-permissions.policy -XX:+ExitOnOutOfMemoryError -XX:+HeapDumpOnOutOfMemoryError</argLine>
117
                            <test>SecurityActionsTest</test>
118
                            <skip>${skip.security-manager.tests}</skip>
119
                        </configuration>                        
120
                    </execution>
121
                </executions>
122
            </plugin>
123
        </plugins>
124
    </build>
125

126
</project>
127

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

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

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

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