pom.xml

40 lines | 1.354 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.0-beta-1-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <name>Distribution</name>
    <description/>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>distribution-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>modules</module>
        <module>as7-adapter-zip</module>
        <module>eap6-adapter-zip</module>
        <module>wildfly-adapter-zip</module>
        <module>examples-docs-zip</module>
        <module>theme-template-zip</module>
        <module>war-zip</module>
        <module>war-dist</module>
        <module>appliance-dist</module>
        <module>src-dist</module>
    </modules>
</project>