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

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>ca.pgon</groupId>
    <artifactId>st</artifactId>
    <version>2.0</version>

    <packaging>pom</packaging>
    <name>st</name>
    <url>http://www.pgon.ca/st</url>
    <description>This is multiple libraries that can help with common problems for the solution or testing the solution.</description>

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

    <modules>
        <module>st-light</module>
        <module>st-light7</module>
        <module>st-test-light</module>
    </modules>

    <licenses>
        <license>
            <name>The Apache Software 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:provirus/smalltools.git</connection>
        <developerConnection>scm:git:git@github.com:provirus/smalltools.git</developerConnection>
        <url>git@github.com:provirus/smalltools.git</url>
    </scm>

    <developers>
        <developer>
            <id>provirus</id>
            <name>Simon Levesque</name>
            <url>http://www.simonlevesque.com</url>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>-5</timezone>
        </developer>
    </developers>

    <profiles>
        <profile>
            <id>sign</id>
            <build>
                <plugins>

                    <!-- Package -->
                    <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>

                </plugins>
            </build>
        </profile>
    </profiles>

</project>
