pom.xml

50 lines | 1.619 kB Blame History Raw Download
<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.5.1.Final-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>
        <module>ldap</module>
    </modules>
</project>