2015-02-09 00:02:35 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2015-04-22 17:11:46 +00:00
|
|
|
<artifactId>keycloak-examples-broker-parent</artifactId>
|
2015-02-09 00:02:35 +00:00
|
|
|
<groupId>org.keycloak</groupId>
|
2015-04-02 13:36:43 +00:00
|
|
|
<version>1.2.0.RC1-SNAPSHOT</version>
|
2015-02-09 00:02:35 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Keycloak Broker Examples - Google Authentication</name>
|
|
|
|
<artifactId>google-authentication</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
An example about how to authenticate with Google
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jboss</id>
|
|
|
|
<name>jboss repo</name>
|
|
|
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>google-authentication</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.as.plugins</groupId>
|
|
|
|
<artifactId>jboss-as-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.wildfly.plugins</groupId>
|
|
|
|
<artifactId>wildfly-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|