You can either retrieve RDF4J via Apache Maven, or download the SDK or onejar directly.
RDF4J 5.0.3 is our latest stable release. It requires Java 11 minimally. For details on what’s new and how to upgrade, see the release and upgrade notes.
RDF4J 5.0.3 SDK (zip)
Full Eclipse RDF4J SDK, containing all libraries, RDF4J Server, Workbench, and Console applications, and Javadoc API.
RDF4J 5.0.3 onejar
Single jar file for easy inclusion of the full RDF4J toolkit in your Java project.
You can include RDF4J as a Maven dependency in your Java project by including the following BOM (Bill-of-Materials):
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-bom</artifactId>
<version>5.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
RDF4J is a multi-module project, you can pick and choose which libraries you need. To include the full project, simply import the following dependency:
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-storage</artifactId>
<type>pom</type>
</dependency>
See the Setup instructions in the Programmer’s documentation for more details on Maven and which artifacts RDF4J provides.
You can access the RDF4J source code directly from our GitHub repositories. Maven nightly snapshot builds for the main and develop branch are available from the Sonatype snapshot repository.
To include nightly snapshot builds in your project, add this repository to your project’s POM:
<repositories>
<repository>
<id>oss.sonatype.org-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Then use RDF4J dependencies as normal, using <version>-SNAPSHOT as the version number.
Old releases of OpenRDF Sesame (the predecessor of Eclipse RDF4J) can be found on Sourceforge.
Eclipse RDF4J is licensed to you under the terms of the Eclipse Distribution License (EDL), v1.0.
Table of Contents