<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>com.codetaco</groupId>
        <artifactId>pom</artifactId>
        <version>1.0.1</version>
    </parent>

    <artifactId>cli</artifactId>
    <version>6.2.2</version>
    <name>com.codetaco.cli</name>

    <description>A command line parser for Java</description>
    <url>https://bitbucket.org/codetaco/com.codetaco.cli</url>
    <packaging>jar</packaging>

    <properties>
        <math.version>4.1.4</math.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.codetaco</groupId>
            <artifactId>math</artifactId>
            <version>${math.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
