<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>
	<!-- this is configured as a stand alone project on purpose -->
	<parent>
		<groupId>nl.innovationinvestments</groupId>
		<artifactId>IICompanyPom</artifactId>
		<version>1-SNAPSHOT</version>
		<relativePath/> 
	</parent>
	<artifactId>CheyenneMavenPluginOverlayTest</artifactId>	
	<version>1.0-SNAPSHOT</version>
	
	<name>InnovationInvestments Cheyenne Maven Plugin overlay test</name>
	<packaging>chy</packaging>

	<!-- properties -->
	<properties>
		<cheyenne-version>1.11-SNAPSHOT</cheyenne-version>
	</properties>
	
	<!-- configure dependencies -->
	<dependencies>
		<dependency>	<groupId>nl.innovationinvestments</groupId> 	<artifactId>CheyenneEngine</artifactId>			<version>${cheyenne-version}</version>	</dependency>
		<dependency>	<groupId>nl.knowledgeplaza</groupId> 			<artifactId>TbeeCSV</artifactId>				<version>1.0-SNAPSHOT</version>			</dependency>
	</dependencies>
	
	<!-- configure how the project is build -->
	<build>

		<plugins>	
			
			<!-- setup the compiler -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.1</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			
			<!-- cheyenne -->
			<plugin>
				<groupId>nl.innovationinvestments</groupId>
				<artifactId>CheyenneMavenPlugin</artifactId>
				<version>${cheyenne-version}</version>
				<extensions>true</extensions>
				<configuration>
					<isOverlay>true</isOverlay>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
