keycloak-uncached

Adding pom.xml to broker examples

3/16/2015 4:28:33 PM

Changes

Details

diff --git a/examples/broker/pom.xml b/examples/broker/pom.xml
new file mode 100644
index 0000000..cd926ac
--- /dev/null
+++ b/examples/broker/pom.xml
@@ -0,0 +1,33 @@
+<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-parent</artifactId>
+        <groupId>org.keycloak</groupId>
+        <version>1.2.0.Beta1-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <name>Broker Examples</name>
+    <description/>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>examples-broker-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>facebook-authentication</module>
+        <module>google-authentication</module>
+        <module>saml-broker-authentication</module>
+        <module>twitter-authentication</module>
+    </modules>
+</project>
\ No newline at end of file