<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.thimbleware.jmemcached</groupId>
    <artifactId>jmemcached-parent</artifactId>
    <packaging>pom</packaging>
    <version>0.7-SNAPSHOT</version>
    <name>jmemcached Parent Project</name>
    <url>http://www.thimbleware.com/projects/jmemcached</url>

    <modules>
        <module>core</module>
        <module>cli</module>
        <module>test</module>
    </modules>


    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    
    <inceptionYear>2008</inceptionYear>

    <licenses>
        <license>
            <name>Apache 2</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

    <organization>
        <name>ThimbleWare</name>
        <url>http://thimbleware.com/</url>
    </organization>

    <developers>
        <developer>
            <email>ryan@thimbleware.com</email>
            <name>Ryan Daum</name>
            <organization>ThimbleWare Inc</organization>
            <organizationUrl>http://www.thimbleware.com/</organizationUrl>
            <roles>
                <role>maintainer</role>
            </roles>
        </developer>
    </developers>

    <distributionManagement>
        <repository>
            <id>thimbleware.repo</id>
            <name>ThimbleWare Repository</name>
            <url>scp://ryan@thimbleware.com//var/www/maven</url>
        </repository>
        <snapshotRepository>
            <id>thimbleware.repo</id>
            <name>ThimbleWare Repository</name>
            <url>scp://ryan@thimbleware.com//var/www/maven</url>
        </snapshotRepository>
    </distributionManagement>

    <scm>
        <connection>
            scm:hg:http://thimbleware.com/hg/jmemcached
        </connection>
        <developerConnection>
            scm:hg:file:///var/hg/jmemcached
        </developerConnection>
    </scm>
</project>
