<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.crosstreelabs</groupId>
        <artifactId>parent</artifactId>
        <version>2.0.5</version>
    </parent>

    <groupId>com.crosstreelabs</groupId>
    <artifactId>phpfunctions</artifactId>
    <version>0.2.0</version>
    <packaging>jar</packaging>

    <name>PHP Functions Library</name>
    <description>Provides a selection of PHP's functionality in Java, including date/time formatting.</description>
    <url>http://projects.crosstreelabs.com/phpfunctions-java</url>
    
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git@github.com:crosstreelabs/php-functions.git</connection>
        <developerConnection>scm:git:git@github.com:crosstreelabs/php-functions.git</developerConnection>
        <url>git@github.com:crosstreelabs/php-functions.git</url>
        <tag>phpfunctions-0.2.0</tag>
    </scm>
    
    <developers>
        <developer>
            <name>Thomas Wilson</name>
            <email>thomas.wilson@crosstreelabs.com</email>
            <organization>Crosstree Labs</organization>
            <organizationUrl>http://www.crosstreelabs.com</organizationUrl>
        </developer>
        <developer>
            <name>Contributors</name>
            <organizationUrl>https://github.com/crosstreelabs/php-functions/graphs/contributors</organizationUrl>
        </developer>
    </developers>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>2.7</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.3.2</version>
        </dependency>
      
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
