<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>gov.nasa</groupId>
    <artifactId>worldwind</artifactId>
    <version>2.0.0-986</version>
    <packaging>jar</packaging>

    <name>World Wind</name>
    <description>World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.</description>
    <url>http://worldwind.arc.nasa.gov/java/</url>
    <licenses>
        <license>
            <name>NASA Open Source Agreement 1.3</name>
            <url>http://worldwind.arc.nasa.gov/worldwind-nosa-1.3.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
	<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>
            </plugin>
			<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5</version>
            </plugin>
        </plugins>
	</build>

</project>
