2014-05-27 14:01:35 +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/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>examples-pom</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2014-06-19 09:19:10 +00:00
|
|
|
<version>1.0-beta-4-SNAPSHOT</version>
|
2014-05-27 14:01:35 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<name>Provider Examples</name>
|
|
|
|
<description/>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>examples-providers-pom</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>audit-listener-sysout</module>
|
|
|
|
<module>audit-provider-mem</module>
|
|
|
|
</modules>
|
|
|
|
</project>
|