<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>net.wasdev.maven.parent</groupId>
        <artifactId>parent</artifactId>
        <version>1.4</version>
        <relativePath />
    </parent>

    <groupId>net.wasdev.wlp.maven</groupId>
    <artifactId>liberty-maven</artifactId>
    <version>2.3</version>
    <packaging>pom</packaging>
    <name>WebSphere Application Server Liberty Profile Maven Tools</name>
    <description>
        Parent pom for Maven tools supporting development with 
        WebSphere Application Server Liberty Profile
    </description>
    <url>https://wasdev.github.io</url>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>https://raw.github.com/WASdev/ci.maven/master/LICENSE</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git@github.com:WASdev/ci.maven.git</connection>
        <developerConnection>scm:git:git@github.com:WASdev/ci.maven.git</developerConnection>
        <url>git@github.com:WASdev/ci.maven.git</url>
        <tag>liberty-maven-2.3</tag>
    </scm>

    <developers>
        <developer>
            <id>jgawor</id>
            <name>Jarek Gawor</name>
            <email>jgawor@gmail.com</email>
        </developer>
    </developers>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>net.wasdev.wlp.ant</groupId>
                <artifactId>wlp-anttasks</artifactId>
                <version>1.4.1</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <modules>
        <module>liberty-maven-app-parent</module>
        <module>liberty-maven-plugin</module>
        <module>liberty-plugin-archetype</module>
        <module>liberty-archetype-webapp</module>
        <module>liberty-archetype-ear</module>
    </modules>
</project>
