<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>de.mygroup</groupId>
	<artifactId>trial-maven</artifactId>
	<version>0.1.0</version>
	<packaging>pom</packaging>
	<name>Parent Module</name>
	<modules>
		<module>trial-maven-build-config</module>
		<module>trial-maven-product</module>
	</modules>
	<distributionManagement>
		<!-- Location for a local deployment of the site. -->
		<site>
			<id>local-site</id>
			<name>Locally deployed site</name>
			<url>file://${user.dir}/target/site-deploy</url>
		</site>
	</distributionManagement>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.0-beta-3</version>
				<inherited>false</inherited>
				<configuration>
					<reportPlugins>
						<plugin>
							<groupId>org.apache.maven.plugins</groupId>
							<artifactId>maven-project-info-reports-plugin</artifactId>
							<reports>
								<report>index</report>
								<report>dependencies</report>
								<report>plugins</report>
								<report>summary</report>

								<report>cim</report>
								<report>issue-tracking</report>
								<report>mailing-list</report>
								<report>dependency-convergence</report>
								<report>plugin-management</report>
								<report>license</report>
								<report>project-team</report>
								<report>scm</report>
							</reports>
						</plugin>
						<plugin>
							<groupId>org.apache.maven.plugins</groupId>
							<artifactId>maven-surefire-report-plugin</artifactId>
							<configuration>
								<aggregate>true</aggregate>
							</configuration>
						</plugin>
					</reportPlugins>
				</configuration>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>2.3.2</version>
					<configuration>
						<source>1.5</source>
						<target>1.5</target>
						<showDeprecation>true</showDeprecation>
						<showWarnings>true</showWarnings>
						<compilerVersion>1.6</compilerVersion>

						<fork>true</fork>
						<executable>C:\Programme\Java\jdk1.6.0_11\bin\javac.exe</executable>
						<compilerArguments>
							<Werror />
							<Xlint />
							<!-- Avoid "warning: [path] bad path element '': no such file or directory". See http://devnet.jetbrains.net/message/5212982. -->
							<Xlint:-path />
						</compilerArguments>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.7.1</version>
					<configuration>
						<parallel>classes</parallel>
						<threadCount>2</threadCount>
						<perCoreThreadCount>false</perCoreThreadCount>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-report-plugin</artifactId>
					<version>2.7.1</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-site-plugin</artifactId>
					<version>3.0-beta-3</version>
					<configuration>
						<reportPlugins>
							<plugin>
								<groupId>org.apache.maven.plugins</groupId>
								<artifactId>maven-project-info-reports-plugin</artifactId>
								<reports>
									<report>index</report>
									<report>dependencies</report>
									<report>plugins</report>
									<report>summary</report>

									<report>cim</report>
									<report>issue-tracking</report>
									<report>mailing-list</report>
									<report>dependency-convergence</report>
									<report>plugin-management</report>
									<report>license</report>
									<report>project-team</report>
									<report>scm</report>
								</reports>
							</plugin>
						</reportPlugins>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-project-info-reports-plugin</artifactId>
					<version>2.2</version>
					<configuration>
						<!--
							Speed up the dependencies report by not displaying the dependency
							repository locations. If set to true it takes very long time to
							look up all dependencies if remote repositories are involved.
						-->
						<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.8.2</version>
				<scope>test</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
</project>