<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <prerequisites>
        <maven>2.2.0</maven>
    </prerequisites>    
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <groupId>com.googlecode.cmake-maven-project</groupId>
    <artifactId>cmake</artifactId>
    <version>2.8.8-b1</version>
    <packaging>pom</packaging>
    <name>CMake</name>
    <description>Builds native code using CMake makefile generator</description>
    <url>http://code.google.com/p/cmake-maven-project/</url>
    <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>
        <url>https://cmake-maven-project.googlecode.com/hg/</url>
        <connection>scm:hg:https://cmake-maven-project.googlecode.com/hg/</connection>
        <developerConnection>scm:hg:https://cmake-maven-project.googlecode.com/hg/</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>cowwoc</id>
            <name>Gili Tzabari</name>
        </developer>
    </developers>
    
    <modules>
        <module>cmake-binaries-plugin</module>
        <module>cmake-binaries</module>
        <module>cmake-maven-plugin</module>
    </modules>
	
    <profiles>
        <profile>
            <id>windows</id>
        </profile>
        <profile>
            <id>linux</id>
        </profile>
        <profile>
            <id>mac</id>
        </profile>
        <profile>
            <id>sonatype-oss-release</id>
            <build>
                <plugins>
                    <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>
                        <configuration>
                            <passphrase>${gpg.passphrase}</passphrase>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>
