<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>com.test</groupId>
	<artifactId>siteparent</artifactId>
	<packaging>pom</packaging>
	<version>0.1-SNAPSHOT</version>
	<name>parent</name>
        <url>http://mysite.com/</url>
 	<build>
                <plugins>

			<plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-site-plugin</artifactId>
                                <version>2.0-beta-7-SNAPSHOT</version>
                        </plugin>
		</plugins>
	</build>
	<modules>
		<module>module1</module>
		<module>module2</module>
	</modules>

</project>

