<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>
	<groupId>nl.knowledgeplaza</groupId>
	<artifactId>KpUtil</artifactId>
	<packaging>jar</packaging>
	<version>1.6</version>
	<name>Knowledgeplaza Java Utilities</name>
<!--
	<scm>
		<connection>scm:cvs:ext:toeukpap@eolie.applicationplaza.com:/ont/cvs_repos:jars/container/KpUtil</connection>
		<developerConnection>scm:cvs:ext:toeukpap@eolie.applicationplaza.com:/ont/cvs_repos:jars/container/KpUtil</developerConnection>
	</scm>
-->
	
	<!-- where can maven find other artifacts -->
	<repositories>
		<repository>
			<id>kp</id>
			<url>http://www.softworks.nl:8081/nexus/content/groups/public</url>
			<!-- this server must be defined in ~/.m2/setting.xml with a username and password	 http://maven.apache.org/settings.html#Servers -->
		</repository>
	</repositories>
	
	<!-- where can maven find plugins -->
	<pluginRepositories>
		<pluginRepository>
			<id>kp</id>
			<url>http://www.softworks.nl:8081/nexus/content/groups/public</url>
			<!-- this server must be defined in ~/.m2/setting.xml with a username and password	 http://maven.apache.org/settings.html#Servers -->
		</pluginRepository>
	</pluginRepositories>
	
	<dependencies>
		<dependency>	<groupId>log4j</groupId> 						<artifactId>log4j</artifactId>					<version>1.2.15</version>	</dependency>
		<dependency>	<groupId>org.apache.commons</groupId> 			<artifactId>codecs</artifactId>					<version>1.3</version>	</dependency>
		<dependency>	<groupId>org.apache.commons</groupId> 			<artifactId>pool</artifactId>					<version>1.3</version>	</dependency>
		<dependency>	<groupId>dom4j</groupId> 						<artifactId>dom4j</artifactId>					<version>1.6.1</version>	</dependency>
		<dependency>	<groupId>org.eclipse.persistence</groupId> 		<artifactId>eclipselink</artifactId>			<version>1.1.3</version>	</dependency>
		<dependency>	<groupId>javax.persistence</groupId> 			<artifactId>persistence-api</artifactId>		<version>1.0</version>	</dependency>
		<dependency>	<groupId>net.sourceforge.collections</groupId> 	<artifactId>collections-generic</artifactId>	<version>4.01</version>	</dependency>
		<dependency>	<groupId>javax.activation</groupId> 			<artifactId>activation</artifactId>				<version>1.1</version>	</dependency>
		<dependency>	<groupId>javax.mail</groupId> 					<artifactId>mail</artifactId>					<version>1.4</version>	</dependency>
		<dependency>	<groupId>javax.servlet</groupId> 				<artifactId>servlet-api</artifactId>			<version>2.3</version>	</dependency>
		<dependency>	<groupId>org.easytesting</groupId> 				<artifactId>fest-assert</artifactId>			<version>1.2</version>	<scope>test</scope>	</dependency>
		<dependency>	<groupId>junit</groupId> 						<artifactId>junit</artifactId>					<version>4.5</version>	<scope>test</scope>	</dependency>
	</dependencies>
	

	<build>
		<sourceDirectory>src</sourceDirectory>
		<testSourceDirectory>srcTest</testSourceDirectory>
		<resources>
			<resource>
				<directory>src</directory>
			</resource>
		</resources>
		<testResources>
			<testResource>
				<directory>srcTest</directory>
			</testResource>
		</testResources>
	
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<source>1.5</source>
						<target>1.5</target>
						<showDeprecation>true</showDeprecation>
						<fork>false</fork>
						 <compilerArgument></compilerArgument>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>

	<distributionManagement>
		<repository>
			<id>kp</id>
			<url>http://www.softworks.nl:8081/nexus/content/repositories/releases/</url>
			<uniqueVersion>false</uniqueVersion>
		</repository>
		<snapshotRepository>
			<id>kp</id>
			<url>http://www.softworks.nl:8081/nexus/content/repositories/snapshots/</url>
			<uniqueVersion>false</uniqueVersion>
		</snapshotRepository>
	</distributionManagement>	
	
</project>
