<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>
	<groupId>nl.knowledgeplaza.wps</groupId>
	<artifactId>WPSIMPORT</artifactId>
	<packaging>jar</packaging>
	<version>1.0-SNAPSHOT</version>
	<name>KnowledgePlaza WPS</name>
	
	<!-- configure dependencies -->
	<dependencies>
		
		<dependency>	<groupId>nl.knowledgeplaza</groupId> 			<artifactId>KpUtil</artifactId>						<version>1.17-SNAPSHOT</version>				</dependency>
		<dependency>	<groupId>nl.knowledgeplaza</groupId> 			<artifactId>KpServletsAndFilters</artifactId>		<version>1.14-SNAPSHOT</version>	</dependency>
		<dependency>	<groupId>log4j</groupId> 						<artifactId>log4j</artifactId>						<version>1.2.15</version>			</dependency>
		<dependency>	<groupId>apache-httpclient</groupId>			<artifactId>commons-httpclient</artifactId>			<version>3.1</version>				</dependency>    
		<dependency>	<groupId>commons-fileupload</groupId>			<artifactId>commons-fileupload</artifactId>			<version>1.2.1</version>			</dependency>
		
		<dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.4</version> <scope>provided</scope></dependency>
	</dependencies>
	
	<!-- configure how the project is build -->
	<build>

		<!-- setup the source directories -->
		<sourceDirectory>src</sourceDirectory>
		<testSourceDirectory>srcTest</testSourceDirectory>
		<resources>
			<resource>
				<directory>src</directory>
				<excludes>
				  <exclude> **/*.java </exclude>
				  <exclude> **/CVS </exclude>
				</excludes>
			</resource>
		</resources>
		<testResources>
			<testResource>
				<directory>srcTest</directory>
				<excludes>
				  <exclude> **/*.java </exclude>
				  <exclude> **/CVS </exclude>
				</excludes>
			</testResource>
		</testResources>

		<!-- configure additional plugins -->
		<plugins>
			<!-- setup the compiler -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.1</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<showDeprecation>false</showDeprecation>
					<fork>false</fork>
					 <compilerArgument></compilerArgument>
				</configuration>
			</plugin>
			<!-- surefire 2.7+ runs test classes by annotation instead of classname pattern -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.8.1</version>
			</plugin>
			<!-- TOTEST: http://weblogs.java.net/blog/2009/08/10/getting-most-out-maven-settingsxml-file -->
		</plugins>
	</build>
</project>
