<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.knowledgeplaza</groupId>
		<artifactId>KPCompanyPom</artifactId>
		<version>1-SNAPSHOT</version>
	</parent>
	<artifactId>Dance4ItBM</artifactId>
	<version>1.0-SNAPSHOT</version>
	<packaging>jar</packaging>
	<name>Knowledgeplaza Dance4IT Business Model</name>

	<!-- configure dependencies -->
	<dependencies>
		<dependency>	<groupId>nl.knowledgeplaza</groupId> 			<artifactId>KpUtil</artifactId>					<version>1.16-SNAPSHOT</version>	</dependency>
		<dependency>	<groupId>org.eclipse.persistence</groupId> 		<artifactId>javax.persistence</artifactId>		<version>2.0.0</version>	</dependency>
		<dependency>	<groupId>org.eclipse.persistence</groupId> 		<artifactId>eclipselink</artifactId>			<version>2.0.2</version>	</dependency>

		<dependency>	<groupId>org.liquibase</groupId>				<artifactId>liquibase-core</artifactId>			<version>1.9.2</version>	</dependency>

		<dependency>	<groupId>log4j</groupId> 						<artifactId>log4j</artifactId>					<version>1.2.15</version>	</dependency>
		<dependency>	<groupId>org.slf4j</groupId> 					<artifactId>slf4j-log4j12</artifactId>			<version>1.5.8</version>	<scope>compile</scope></dependency>

		<!--
		<dependency>	<groupId>com.mysema.querydsl</groupId>			<artifactId>querydsl-apt</artifactId>			<version>1.8.1</version>	<scope>provided</scope>	</dependency>				
		<dependency>	<groupId>com.mysema.querydsl</groupId>			<artifactId>querydsl-hql</artifactId>			<version>1.8.1</version>	</dependency>
		-->

		<!-- test -->
		<dependency>	<groupId>junit</groupId> 						<artifactId>junit</artifactId>					<version>4.5</version>		<scope>test</scope>	</dependency>
		<dependency>	<groupId>org.hsqldb</groupId>					<artifactId>hsqldb</artifactId>					<version>1.8.0.10</version>	<scope>test</scope>	</dependency>
		<dependency>	<groupId>dom4j</groupId> 						<artifactId>dom4j</artifactId>					<version>1.6.1</version>	<scope>test</scope>	</dependency>
		<dependency>	<groupId>jaxen</groupId>						<artifactId>jaxen</artifactId>					<version>1.1.1</version>	<scope>test</scope>	</dependency>
		<dependency>	<groupId>xmlunit</groupId>						<artifactId>xmlunit</artifactId>				<version>1.3</version>	<scope>test</scope>	</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>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<showDeprecation>false</showDeprecation>
					<fork>false</fork>
					 <compilerArgument></compilerArgument>
				</configuration>
			</plugin>
			
		</plugins>
	</build>
</project>
