<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.captechventures</groupId>
	<artifactId>release-parent</artifactId>
	<packaging>pom</packaging>
	<version>0.0.1-SNAPSHOT</version>
	<modules>
		<module>../release-module1</module>
		<module>../release-module2</module>
	</modules>
	<scm>
		<connection>scm:svn:http://localhost/dev/release-parent/trunk</connection>
		<developerConnection>scm:svn:http://localhost/dev/release-parent/trunk</developerConnection>
	</scm>
	<distributionManagement>
		<repository>
			<id>localhost</id>
			<url>file:///Users/emiles/temp</url>
		</repository>
	</distributionManagement>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.0-beta-10-SNAPSHOT</version>
				<configuration>
					<workingDirectory>${basedir}/target/checkout</workingDirectory>
					<useReleaseProfile>true</useReleaseProfile>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<pluginRepositories>
		<pluginRepository>
			<id>apache.snapshots</id>
			<url>https://repository.apache.org/content/groups/snapshots-group</url>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
			<releases>
				<enabled>false</enabled>
			</releases>
		</pluginRepository>
	</pluginRepositories>
</project>