<?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>
  <groupId>org.apache.maven.examples</groupId>
  <artifactId>parent</artifactId>
  <packaging>pom</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>Parent</name>
  <url>http://www.example.com/parent/</url>
  <distributionManagement>
    <site>
      <id>example</id>
      <name>Example company web server</name>
      <url>scp://ssh.example.com/htdocs/parent/</url>
    </site>
  </distributionManagement>
  <build>
    <defaultGoal>site:stage</defaultGoal>
    <pluginManagement>
      <plugins>
	<plugin>
	  <groupId>org.apache.maven.plugins</groupId>
	  <artifactId>maven-site-plugin</artifactId>
	  <version>2.0-beta-7-SNAPSHOT</version>
	  <dependencies>
	    <dependency>
	      <groupId>org.apache.maven.shared</groupId>
	      <artifactId>maven-doxia-tools</artifactId>
	      <version>1.0-SNAPSHOT</version>
	    </dependency>
	  </dependencies>
	</plugin>
      </plugins>
    </pluginManagement>
  </build>
  <modules>
    <module>child</module>
  </modules>
</project>

