<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision: 4592 $ $Date: 2008-06-04 17:36:50 +0200 (Mi, 04 Jun 2008) $ -->
<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>
	
	<groupId>test</groupId>
	<artifactId>foo-parent</artifactId>
	<version>SNAPSHOT</version>
	<packaging>pom</packaging>
	
	<modules>
		<module>../foo-mod-0</module>
		<module>../foo-mod-1</module>
	</modules>
	
	<properties>
		<site.url>file://localhost/${java.io.tmpdir}/foo-site</site.url>
		<web.url>http://maven.apache.org/foo</web.url>
	</properties>
	
	<name>Foo</name>
	<description>A Test Project</description>
	<url>${web.url}/</url>
	<inceptionYear>2008</inceptionYear>
	
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-site-plugin</artifactId>
					<version>2.0-beta-7-SNAPSHOT</version>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
	
	<reporting>
		<plugins>
			<plugin>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.0.1</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>index</report>
							<report>summary</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>
	
	<distributionManagement>
		<site>
			<id>test</id>
			<url>${site.url}</url>
		</site>
	</distributionManagement>
	
</project>

