
<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>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>biz.massive-dynamics</groupId>
    <artifactId>Sourcery</artifactId>
    <version>1.0.0.2</version>
    <packaging>jar</packaging>

    <name>Sourcery</name>
    <url>http://launchpad.net/sourcery</url>
    <description>A resource/settings manager (as in loading and saving) for Java</description>

    <licenses>
        <license>
            <name>The MIT License</name>
            <url>http://bazaar.launchpad.net/~massive-dynamics-staff/sourcery/trunk/view/head:/Sourcery/LICENSE</url>
            <distribution>repo</distribution>
            <comments>Users may manually add Sourcery to their projects if required</comments>
        </license>
    </licenses>
  
    <organization>
        <name>Massive Dynamics</name>
    </organization>
  
    <contributors>
        <contributor>
            <name>Cruz Bishop</name>
            <organization>Massive Dynamics</organization>
            <email>cruzjbishop@gmail.com</email>
            <roles>
                <role>Organization Founder</role>
                <role>Lead Programmer</role>
            </roles>
        </contributor>
    </contributors>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    
    <scm>
        <url>http://bazaar.launchpad.net/~massivedynamics/sourcery</url>
        <connection>scm:bzr:lp:sourcery</connection>
    </scm>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
    
        <dependency>
            <groupId>biz.massive-dynamics</groupId>
            <artifactId>Versioneer</artifactId>
            <version>1.2.0.0</version>
            <scope>compile</scope>
        </dependency>
    
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
            <version>1.10</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
  
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.8.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <showDeprecation>true</showDeprecation>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
