MVN

org.apache.jena : jena-tdb1

Maven & Gradle

Feb 10, 2024

Apache Jena - TDB1 (Native Triple Store) · TDB is a storage subsystem for Jena and ARQ, it is a native triple store providing persistent storage of triples/quads.

<dependency>
    <groupId>org.apache.jena</groupId>
    <artifactId>jena-tdb1</artifactId>
    <version>5.0.0-rc1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.jena : jena-tdb1 to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 5.0.0-rc1
  • Latest Release Candidate: 5.0.0-rc1

All Versions

Choose a version of org.apache.jena : jena-tdb1 to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
5.0.x
jena-tdb1-5.0.0-rc1

How to add a dependency to Maven

Add the following org.apache.jena : jena-tdb1 maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.jena</groupId>
    <artifactId>jena-tdb1</artifactId>
    <version>5.0.0-rc1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.jena : jena-tdb1 gradle dependency to your build.gradle file:

implementation 'org.apache.jena:jena-tdb1:5.0.0-rc1'

Gradle Kotlin DSL: Add the following org.apache.jena : jena-tdb1 gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.jena:jena-tdb1:5.0.0-rc1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.jena : jena-tdb1 sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.jena" % "jena-tdb1" % "5.0.0-rc1"

Advertisement