keycloak-scim/examples/providers/event-store-mem/pom.xml

35 lines
1.1 KiB
XML
Raw Normal View History

<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/maven-v4_0_0.xsd">
<parent>
<artifactId>keycloak-examples-providers-parent</artifactId>
<groupId>org.keycloak</groupId>
2015-05-22 06:42:40 +00:00
<version>1.3.0.Final-SNAPSHOT</version>
</parent>
2014-08-27 10:41:40 +00:00
<name>Event Store In-Mem Example</name>
<description/>
<modelVersion>4.0.0</modelVersion>
2014-08-27 10:41:40 +00:00
<artifactId>event-store-mem-example</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
</dependency>
2014-06-24 15:59:27 +00:00
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-model-api</artifactId>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
2014-08-27 10:41:40 +00:00
<artifactId>keycloak-events-api</artifactId>
</dependency>
</dependencies>
<build>
2014-08-27 10:41:40 +00:00
<finalName>event-store-mem-example</finalName>
</build>
</project>