<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.knowledgeplaza</groupId>
		<artifactId>KPCompanyPom</artifactId>
		<version>1-SNAPSHOT</version>
		<relativePath/> 
	</parent>
	<groupId>nl.ppmoost.ventureplan</groupId>
	<artifactId>VentureplanTaskServlet</artifactId>
	<packaging>jar</packaging>
	<name>Ventureplan Task Servlet</name>
	<version>1.1-SNAPSHOT</version>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.target>1.8</maven.compiler.target>
		<maven.compiler.source>1.8</maven.compiler.source>
	</properties>


	<!-- configure dependencies -->
	<dependencies>
		<dependency>	
			<groupId>nl.knowledgeplaza</groupId> 			
			<artifactId>KpUtil</artifactId>					
			<version>1.19-SNAPSHOT</version>		
		</dependency>
		<dependency>	
			<groupId>javax.servlet</groupId> 				
			<artifactId>servlet-api</artifactId>			
			<version>2.4</version>		
			<scope>provided</scope>	
		</dependency>
		<dependency>
			<groupId>junit</groupId> 						
			<artifactId>junit</artifactId>					
			<version>4.5</version>		
			<scope>test</scope>	
		</dependency>
		<dependency>	
			<groupId>commons-httpclient</groupId> 			
			<artifactId>commons-httpclient</artifactId>					
			<version>3.1</version>		
		</dependency>
		<dependency>
			<groupId>nl.buildersenperformers</groupId>
			<artifactId>docmerge</artifactId>
			<version>1.0.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>net.sf.json-lib</groupId>
			<artifactId>json-lib</artifactId>
			<version>2.4</version>
			<classifier>jdk15</classifier>
		</dependency>
		<dependency>
			<groupId>nl.innovationinvestments.pdfconversie</groupId>
			<artifactId>ConvertWordToPdfTask</artifactId>
			<version>1.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.15</version>
			<exclusions>
			    <exclusion>
			        <groupId>com.sun.jmx</groupId>
			        <artifactId>jmxri</artifactId>
			    </exclusion>
			    <exclusion>
			        <groupId>com.sun.jdmk</groupId>
			        <artifactId>jmxtools</artifactId>
			    </exclusion>
			    <exclusion>
			            <groupId>javax.jms</groupId>
			            <artifactId>jms</artifactId>
			    </exclusion>
			</exclusions>
		</dependency>
	</dependencies>
	
	<!-- configure how the project is build -->
	<build>

		<!-- setup the source directories -->
		<sourceDirectory>java</sourceDirectory>
		<testSourceDirectory>java-test</testSourceDirectory>
		<resources>
			<resource>
				<directory>java</directory>
				<excludes>
				  <exclude> **/*.java </exclude>
				  <exclude> **/CVS </exclude>
				</excludes>
			</resource>
		</resources>
		<testResources>
			<testResource>
				<directory>java-test</directory>
				<excludes>
				  <exclude> **/*.java </exclude>
				  <exclude> **/CVS </exclude>
				</excludes>
			</testResource>
		</testResources>
	
		<!-- configure plugins -->
		<plugins>	
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.7.2</version>
				<configuration>
					<excludes>
						<!-- skip the workflow tests because they throw a org.hibernate.MappingNotFoundException: resource: org/jbpm/identity/User.hbm.xml not found -->
						<!-- in the original pre-maven jars jbpm-identity-3.2.3.jar contained hbm.xml files for these definitions, apparently these 3.2.4+ don't anymore -->
						<exclude>**/TestEngineWorkflow.java</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
</project>