<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>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<groupId>net.java.javabuild</groupId>
	<version>1.0</version>
	<url>http://javabuild.java.net/</url>
	<licenses>
		<license>
			<name>Apache Software License</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>
	<description>A set of tools including a maven plugin to execute custom java code during the project build.</description>
	<issueManagement>
		<system>GitHub</system>
		<url>https://github.com/javabuild/builder-parent/issues</url>
	</issueManagement>
	<developers>
		<developer>
			<id>fxbonnet</id>
			<name>Francois-Xavier Bonnet</name>
			<email>francois-xavier.bonnet@centraliens.net</email>
		</developer>
	</developers>
	<scm>
		<connection>scm:git:https://github.com/javabuild/builder-parent.git</connection>
		<developerConnection>scm:git:https://github.com/javabuild/builder-parent.git</developerConnection>
		<url>https://github.com/javabuild/builder-parent</url>
		<tag>HEAD</tag>
	</scm>
	<distributionManagement>
		<site>
			<id>javabuild</id>
			<name>javabuild on java.net</name>
			<url>dav:https://website.java.net/website/javabuild/</url>
		</site>
	</distributionManagement>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.7</maven.compiler.source>
		<maven.compiler.target>1.7</maven.compiler.target>
	</properties>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<packaging>pom</packaging>
	<artifactId>builder-parent</artifactId>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.4</version>
				<dependencies>
					<dependency>
						<groupId>org.apache.maven.wagon</groupId>
						<artifactId>wagon-webdav-jackrabbit</artifactId>
						<version>2.10</version>
					</dependency>
				</dependencies>
			</plugin>
		</plugins>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh</artifactId>
				<version>2.4</version>
			</extension>
		</extensions>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.4</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.8</version>
			</plugin>
		</plugins>
	</reporting>
</project>