<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>
	<properties>
		<prop.resourcesDir>C:/apache-maven-2.1.0/www/resources</prop.resourcesDir>
		<prop.url>http://www.suaempersa.com.br</prop.url>
		<prop.organization>Sua Empresa</prop.organization>
		<prop.roleJavaDeveloper>Java Developer</prop.roleJavaDeveloper>
	</properties>
	<groupId>suaempresa</groupId>
	<artifactId>pom</artifactId>
	<version>1.5</version>
	<packaging>pom</packaging>

	<reporting>
		<outputDirectory>${prop.siteDir}/site/</outputDirectory>

		<plugins>
			<plugin>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<reportSets>
					<reportSet>
						<reports>
							<!--<report>cim</report>-->
							<report>dependencies</report>
							<report>dependency-convergence</report>
							<report>dependency-management</report>
							<report>index</report>
							<!--<report>license</report>-->
							<!--<report>mailing-list</report>-->
							<report>plugin-management</report>
							<report>project-team</report>
							<!--<report>scm</report>-->
							<report>summary</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<configuration>
				  <configLocation>${basedir}/src/site/checkstyle/checkstyle-custom.xml</configLocation>
				</configuration>
			</plugin>
		</plugins>
	</reporting>

</project>