<?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>

    <groupId>be.nspire.gwt.common</groupId>
    <artifactId>gwt-common-parent</artifactId>
    <packaging>pom</packaging>
    <version>1.7-SNAPSHOT</version>
    <modules>
        <module>gwt-common-client</module>
        <module>gwt-common-shared</module>
        <module>gwt-common-all</module>
        <module>gwt-common-demo</module>
    </modules>

    <properties>
        <gwtVersion>2.8.2</gwtVersion>
    </properties>


    <build>
        <extensions>
            <!-- Enabling the use of FTP -->
            <extension>
                <groupId>org.apache.maven.wagon</groupId>
                <artifactId>wagon-ftp</artifactId>
                <version>1.0-beta-6</version>
            </extension>
        </extensions>
    </build>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.11</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>com.google.gwt</groupId>
                <artifactId>gwt</artifactId>
                <version>${gwtVersion}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>com.google.guava</groupId>
                <artifactId>guava-gwt</artifactId>
                <version>21.0</version>
            </dependency>
            <dependency>
                <groupId>be.nspire.gwt.common</groupId>
                <artifactId>gwt-common-client</artifactId>
                <version>${project.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <distributionManagement>
        <repository>
            <id>maven.nspire.be</id>
            <name>NSPIRE Repository</name>
            <url>ftp://www.benoenenzy.be</url>
        </repository>
    </distributionManagement>

</project>