keycloak-scim/wildfly/adduser/pom.xml

60 lines
2.2 KiB
XML
Raw Normal View History

2015-01-28 10:26:46 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
2016-02-03 10:20:22 +00:00
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
~ and other contributors as indicated by the @author tags.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
2015-01-28 10:26:46 +00:00
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.keycloak</groupId>
2015-11-23 13:45:25 +00:00
<artifactId>keycloak-wildfly-parent</artifactId>
2021-05-06 12:39:32 +00:00
<version>14.0.0-SNAPSHOT</version>
2015-01-28 10:26:46 +00:00
</parent>
2015-11-23 13:45:25 +00:00
<artifactId>keycloak-wildfly-adduser</artifactId>
<name>Keycloak WildFly Add User Script</name>
2015-01-28 10:26:46 +00:00
<description/>
<packaging>jar</packaging>
<dependencies>
2015-04-30 00:46:14 +00:00
<dependency>
<groupId>org.keycloak</groupId>
2016-01-15 23:44:17 +00:00
<artifactId>keycloak-server-spi</artifactId>
2015-04-30 00:46:14 +00:00
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-spi-private</artifactId>
</dependency>
2015-01-28 10:26:46 +00:00
<dependency>
<groupId>org.keycloak</groupId>
2015-11-23 13:45:25 +00:00
<artifactId>keycloak-common</artifactId>
2015-01-28 10:26:46 +00:00
</dependency>
2015-03-20 09:18:33 +00:00
<dependency>
<groupId>org.keycloak</groupId>
2015-11-23 13:45:25 +00:00
<artifactId>keycloak-core</artifactId>
2015-03-20 09:18:33 +00:00
</dependency>
<dependency>
2015-11-23 13:45:25 +00:00
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-domain-management</artifactId>
<version>${wildfly.core.version}</version>
2015-03-20 09:18:33 +00:00
</dependency>
2015-01-28 10:26:46 +00:00
<dependency>
<groupId>org.aesh</groupId>
2015-11-23 13:45:25 +00:00
<artifactId>aesh</artifactId>
2015-01-28 10:26:46 +00:00
</dependency>
</dependencies>
</project>