Compare with Previous | Blame | View Log
<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>
<parent>
<groupId>org.openrdf.elmo</groupId>
<artifactId>elmo</artifactId>
<version>1.1</version>
</parent>
<artifactId>elmo-smusher</artifactId>
<name>Smusher</name>
<description>
The task of the Elmo smusher is to find equivalent instances in large sets of
data. This is a very common problem when processing collections of FOAF
profiles as several sources on the Web may describe a the same individual using
different identifiers or blank nodes (which are always assumed to be
different). While the servlet provided is specific to smushing foaf:Person
instances, the underlying mechanism is generic.
</description>
<dependencies>
<dependency>
<groupId>org.openrdf.elmo</groupId>
<artifactId>elmo-core</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.elmo</groupId>
<artifactId>elmo-sesame</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.elmo</groupId>
<artifactId>elmo-rdfs</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.elmo</groupId>
<artifactId>elmo-foaf</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-repository-api</artifactId>
</dependency>
<dependency>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-repository-http</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>