<?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>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<groupId>net.sf.androidscents</groupId>
	<artifactId>androidscents-parent</artifactId>
	<packaging>pom</packaging>
	<name>Android Scents</name>
	<version>1</version>
	<description>Android Scents for animal-sniffer-maven-plugin.</description>
	<url>http://androidscents.sourceforge.net/</url>
	<licenses>
		<license>
			<name>MIT license</name>
			<url>http://www.opensource.org/licenses/mit-license.php</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<connection>scm:svn:http://svn.code.sf.net/p/androidscents/code/trunk/</connection>
		<developerConnection>scm:svn:https://svn.code.sf.net/p/androidscents/code/trunk/</developerConnection>
		<url>http://sourceforge.net/p/androidscents/code/HEAD/tree/trunk/</url>
	</scm>
	<developers>
		<developer>
			<id>schierlm</id>
			<name>Michael Schierl</name>
			<email>schierlm@users.sourceforge.net</email>
			<url>http://schierlm.users.sourceforge.net</url>
			<timezone>+1</timezone>
		</developer>
	</developers>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<configuration>
					<keyname>Maven Project Release Key</keyname>
				</configuration>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>animal-sniffer-maven-plugin</artifactId>
					<version>1.9</version>
					<executions>
						<execution>
							<id>generate</id>
							<phase>package</phase>
							<goals>
								<goal>build</goal>
							</goals>
						</execution>
					</executions>
					<configuration>
						<javaHomeClassPath>
							<javaHomeClassPath>${android.sdk.path}/${android.jar.dir}/android.jar</javaHomeClassPath>
						</javaHomeClassPath>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
	<modules>
		<!-- modules projects are generated dynamically, including the reactor 
			project; but apparently maven-gpg-plugin does not like it if the reactor 
			project is not a parent of the subprojects, therefore copy this project as 
			root, and have the real reactor project be a generated project in subdirectory 
			"all". -->
		<module>all</module>
	</modules>
</project>