<!-- ~ JBoss, Home of Professional Open Source ~ Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors ~ as indicated by the @author tags. All rights reserved. ~ See the copyright.txt in the distribution for a ~ full listing of individual contributors. ~ ~ This copyrighted material is made available to anyone wishing to use, ~ modify, copy, or redistribute it subject to the terms and conditions ~ of the GNU Lesser General Public License, v. 2.1. ~ This program is distributed in 
    the hope that it will be useful, but WITHOUT A ~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A ~ PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. ~ You should have received a copy of the GNU Lesser General Public License, ~ v.2.1 along with this distribution; if not, write to the Free Software ~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, ~ MA 02110-1301, USA. -->

<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>
        <groupId>org.jboss.as</groupId>
        <artifactId>jboss-as-console-bom</artifactId>
        <version>2.8.12.Final</version>
    </parent>
    
    <modelVersion>4.0.0</modelVersion>
    <name>Teiid Console :: Parent</name>
    <groupId>org.jboss.teiid.web-console</groupId>
    <artifactId>teiid-console-parent</artifactId>
    <version>2.7</version>
    <packaging>pom</packaging>

    <description>Teiid Wildfly Web Console</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!-- Overrides to allow the release process to commit: https://jira.codehaus.org/browse/MRELEASE-812 -->
        <version.release.plugin>2.5</version.release.plugin>
    </properties>

    <scm>
        <connection>scm:git:git://github.com/teiid/teiid-web-console.git</connection>
        <developerConnection>scm:git:git@github.com:teiid/teiid-web-console.git</developerConnection>
        <url>http://github.com/teiid/teiid-web-console</url>
        <tag>2.7</tag>
    </scm>

    <licenses>
        <license>
            <name>GNU Lesser General Public License</name>
            <url>http://www.gnu.org/licenses/lgpl.html</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>
    <url>${site.url}</url>
    <developers>
        <developer>
            <name>Steve Hawkins</name>
            <id>steve</id>
            <email>shawkins@redhat.com</email>
            <organization>Red Hat</organization>
            <roles>
                <role>Project Lead</role>
            </roles>
            <timezone>-6</timezone>
        </developer>
        <developer>
            <name>Ramesh Reddy</name>
            <id>ramesh</id>
            <email>rareddy@redhat.com</email>
            <organization>Red Hat</organization>
            <roles>
                <role>Project Lead</role>
            </roles>
            <timezone>-6</timezone>
        </developer>
    </developers>
    <profiles>
        <profile>
            <id>release</id>
            <properties>
                <maven.javadoc.skip>true</maven.javadoc.skip>
            </properties>
            <modules>
                <module>gui</module>
                <module>app</module>
                <module>dist</module>
            </modules>
        </profile>
    </profiles>
    <modules>
        <module>gui</module>
        <module>app</module>
        <module>dist</module>
    </modules>
</project>

