Keycloak
99 строк · 3.7 Кб
1<?xml version="1.0"?>
2<!--
3~ JBoss, Home of Professional Open Source.
4~ Copyright 2016 Red Hat, Inc., and individual contributors
5~ as indicated by the @author tags.
6~
7~ Licensed under the Apache License, Version 2.0 (the "License");
8~ you may not use this file except in compliance with the License.
9~ You may obtain a copy of the License at
10~
11~ http://www.apache.org/licenses/LICENSE-2.0
12~
13~ Unless required by applicable law or agreed to in writing, software
14~ distributed under the License is distributed on an "AS IS" BASIS,
15~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16~ See the License for the specific language governing permissions and
17~ limitations under the License.
18-->
19
20<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"21xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">22<parent>23<artifactId>keycloak-parent</artifactId>24<groupId>org.keycloak</groupId>25<version>999.0.0-SNAPSHOT</version>26<relativePath>../../../pom.xml</relativePath>27</parent>28<modelVersion>4.0.0</modelVersion>29
30<artifactId>keycloak-wildfly-elytron-oidc-adapter</artifactId>31<name>Keycloak Wildfly Elytron OIDC Adapter</name>32<description/>33
34<dependencies>35<dependency>36<groupId>org.wildfly.common</groupId>37<artifactId>wildfly-common</artifactId>38<version>${wildfly.common.wildfly.aligned.version}</version>39<scope>provided</scope>40</dependency>41<dependency>42<groupId>org.wildfly.security</groupId>43<artifactId>wildfly-elytron</artifactId>44<scope>provided</scope>45</dependency>46<dependency>47<groupId>org.wildfly.security.elytron-web</groupId>48<artifactId>undertow-server</artifactId>49<scope>provided</scope>50</dependency>51<dependency>52<groupId>org.jboss.logging</groupId>53<artifactId>jboss-logging</artifactId>54<scope>provided</scope>55</dependency>56<dependency>57<groupId>org.keycloak</groupId>58<artifactId>keycloak-core</artifactId>59</dependency>60<dependency>61<groupId>org.keycloak</groupId>62<artifactId>keycloak-adapter-spi</artifactId>63</dependency>64<dependency>65<groupId>org.keycloak</groupId>66<artifactId>keycloak-adapter-core</artifactId>67</dependency>68<dependency>69<groupId>org.apache.httpcomponents</groupId>70<artifactId>httpclient</artifactId>71</dependency>72<dependency>73<groupId>org.bouncycastle</groupId>74<artifactId>bcprov-jdk18on</artifactId>75</dependency>76<dependency>77<groupId>com.fasterxml.jackson.core</groupId>78<artifactId>jackson-core</artifactId>79</dependency>80<dependency>81<groupId>com.fasterxml.jackson.core</groupId>82<artifactId>jackson-databind</artifactId>83</dependency>84<dependency>85<groupId>com.fasterxml.jackson.core</groupId>86<artifactId>jackson-annotations</artifactId>87</dependency>88<dependency>89<groupId>org.jboss.spec.javax.servlet</groupId>90<artifactId>jboss-servlet-api_3.0_spec</artifactId>91<scope>provided</scope>92</dependency>93<dependency>94<groupId>io.undertow</groupId>95<artifactId>undertow-servlet</artifactId>96<scope>provided</scope>97</dependency>98</dependencies>99</project>100