Fork me on GitHub

Introduction

The Web of Data has many equivalent URIs. sameas.org is a service helps you to find co-references between different data sets.

SameAs4J is a tiny and lightweight library that allows you to integrate the sameas.org service in your Semantic Web Java applications.

Before coding

sameas4j is deployed on Maven Central repository, so users have just to add the sameas4j dependency in their pom.xml:

<dependencies>
  ...
  <dependency>
    <groupId>org.99soft.semweb</groupId>
    <artifactId>sameas4j</artifactId>
    <version>2.0</version>
  </dependency>
  ...
</dependencies>

alternatively, users can add sameas4j dependency in the dependencyManagement block:

<dependencyManagement>
  <dependencies>
    ...
    <dependency>
      <groupId>org.99soft.semweb</groupId>
      <artifactId>sameas4j</artifactId>
      <version>2.0</version>
    </dependency>
    ...
  </dependencies>
</dependencyManagement>

Users are now ready to have fun with it!!!