2015-02-08 05:27:57 +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-05-05 05:55:22 +00:00
|
|
|
<artifactId>keycloak-examples-broker-parent</artifactId>
|
2015-02-08 05:27:57 +00:00
|
|
|
<groupId>org.keycloak</groupId>
|
2015-06-12 12:35:34 +00:00
|
|
|
<version>1.4.0.Final-SNAPSHOT</version>
|
2015-02-08 05:27:57 +00:00
|
|
|
</parent>
|
|
|
|
|
2015-02-09 00:02:35 +00:00
|
|
|
<name>Keycloak Broker Examples - Facebook Authentication</name>
|
2015-02-08 05:27:57 +00:00
|
|
|
<artifactId>facebook-authentication</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
An example about how to authenticate with Facebook
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jboss</id>
|
|
|
|
<name>jboss repo</name>
|
|
|
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>facebook-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>
|