<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>
    <artifactId>org.fuzzydb.util</artifactId>
    <description>
    	Contains classes not specific to fuzzydb implementation which 
    	could be used in any implementation of fuzzy matching, or as
    	general utility classes such as those in the geo package.
    </description>
    
    <parent>
    	<artifactId>fuzzydb-parent</artifactId>
    	<groupId>org.fuzzydb</groupId>
    	<version>1.0.0.RELEASE</version>
		<relativePath>../fuzzydb-parent</relativePath>
    </parent>
    <dependencies>
    	<dependency>
    		<groupId>org.springframework</groupId>
    		<artifactId>spring-core</artifactId>
    		<type>jar</type>
    		<scope>compile</scope>
    		<version>${spring.version}</version>
    	</dependency>
			<dependency>
				<groupId>org.mongodb</groupId>
				<artifactId>mongo-java-driver</artifactId>
				<version>2.9.1</version>
				<scope>provided</scope>
			</dependency>
    </dependencies>
</project>