<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>nl.innovationinvestments</groupId>
		<artifactId>IICompanyPom</artifactId>
		<version>1-SNAPSHOT</version>
	</parent>
	<artifactId>Cheyenne</artifactId>
	<version>1.12.1-SNAPSHOT</version>
	<packaging>pom</packaging>
	<name>InnovationInvestments Cheyenne</name>
 
	<modules>
		<module>engine</module>
		<module>compiler</module>
		<module>servlet</module>
		<module>maven-plugin</module>
	</modules>

	<build>
		<!-- setup the compiler -->
		<plugins>
			<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>
					<showDeprecation>false</showDeprecation>
					<warning>false</warning>
					<fork>false</fork>
				</configuration>
			</plugin>
			<!-- prevent snapshots being used in a release -->
			<plugin>
				<groupId>nl.knowledgeplaza</groupId>
				<artifactId>ReleaseArtifactPlugin</artifactId>
				<version>1.0</version>
				<executions>
					<!-- run the copy-dependencies goal of the plugin as part of the initialize phase of the build using the specified configuration-->
					<execution>
						<id>prevent snapshots being used in a release</id>
						<goals>
							<goal>failOnSnapshot</goal>
						</goals>
						<phase>validate</phase>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>	<groupId>junit</groupId> 						<artifactId>junit</artifactId>					<version>4.5</version>		<scope>test</scope>	</dependency>
	</dependencies>
</project>