<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision: 3937 $ $Date: 2008-04-11 15:58:11 +0200 (Fr, 11 Apr 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>
	
	<artifactId>foo-mod-1</artifactId>
	<groupId>test</groupId>
	<packaging>jar</packaging>
	
	<parent>
		<groupId>test</groupId>
		<artifactId>foo-parent</artifactId>
		<version>SNAPSHOT</version>
		<relativePath>../foo-parent/pom.xml</relativePath>
	</parent>
	
	<name>Foo Module 1</name>
	<description>Just Something Else</description>
	<url>${web.url}/${project.artifactId}/</url>
	<inceptionYear>2008</inceptionYear>
	
	<distributionManagement>
		<site>
			<id>test</id>
			<url>${site.url}/${project.artifactId}</url>
		</site>
	</distributionManagement>
	
</project>

