<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>
	<parent>
		<groupId>nl.innovationinvestments</groupId>
		<artifactId>Cheyenne</artifactId>
		<version>1.12.1-SNAPSHOT</version>
		<relativePath>../pom.xml</relativePath> 
	</parent>
	<artifactId>CheyenneMavenPlugin</artifactId>
	<packaging>maven-plugin</packaging>
	<name>InnovationInvestments Cheyenne Maven Plugin</name>
	<url>http://maven.apache.org</url>
	
	<!-- configure dependencies -->
	<dependencies>
		<dependency>	<groupId>${project.groupId}</groupId> 			<artifactId>CheyenneCompiler</artifactId>			<version>${project.version}</version>	</dependency> <!-- same version as pom -->
		<dependency>	<groupId>org.apache.maven</groupId>				<artifactId>maven-plugin-api</artifactId>			<version>2.0</version>					</dependency>
		<dependency>	<groupId>org.apache.maven.plugins</groupId>		<artifactId>maven-dependency-plugin</artifactId>	<version>2.0</version>					</dependency>
		<dependency>	<groupId>org.apache.maven.plugins</groupId>		<artifactId>maven-war-plugin</artifactId>			<version>2.0</version>					</dependency>
		<dependency>	<groupId>com.pyx4j</groupId>					<artifactId>maven-plugin-log4j</artifactId>			<version>1.0.1</version>				</dependency> <!-- redirect log4j output to maven -->
		<dependency>	<groupId>org.appfuse</groupId>					<artifactId>maven-warpath-plugin</artifactId>		<version>2.0.2</version>				</dependency> <!-- include war dependencies -->
		<dependency>	<groupId>jaxen</groupId>						<artifactId>jaxen</artifactId>					<version>1.1.1</version>	<scope>test</scope>	</dependency>
	</dependencies>

	<!-- configure how the project is build -->
	<build>
        <resources>
          <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
		<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>
					<showDeprecation>false</showDeprecation>
					<fork>false</fork>
					 <compilerArgument></compilerArgument>
				</configuration>
			</plugin>
		</plugins>
				
	</build>
</project>
