48 lines
1.6 KiB
XML
Executable file
48 lines
1.6 KiB
XML
Executable file
<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.3.0.Beta1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>Examples</name>
|
|
<description/>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>keycloak-examples-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<modules>
|
|
<module>admin-client</module>
|
|
<module>broker</module>
|
|
<module>cors</module>
|
|
<module>demo-template</module>
|
|
<module>providers</module>
|
|
<module>js-console</module>
|
|
<module>multi-tenant</module>
|
|
<module>basic-auth</module>
|
|
<module>fuse</module>
|
|
<module>kerberos</module>
|
|
<module>themes</module>
|
|
<module>saml</module>
|
|
</modules>
|
|
</project>
|