Menu

Maven

Robert Vesse

Maven Artifacts

Maven Artifacts for the tool are made available through Maven central for stable releases and through Sonatype's open source repository for development snapshots. There are two artifacts available:

  • API
  • Command Line Interface

API

To use the API as a dependency specify the following in your POM:

<dependency>
  <groupId>net.sf.sparql-query-bm</groupId>
  <artifactId>core</artifactId>
  <version>x.y.z</version>
</dependency>

Where x.y.z is replaced with the desired version string

Command Line Interface

To use the CLI as a dependency specify the following in your POM:

<dependency>
  <groupId>net.sf.sparql-query-bm</groupId>
  <artifactId>cmd</artifactId>
  <version>x.y.z</version>
</dependency>

Where x.y.z is replaced with the desired version string

Development Snapshots

As noted earlier development snapshots are available through Sonatype's open source repository. To use development snapshots you will likely need to add a repository definition to your POM:

<repository>
  <id>ossrh-snapshots</id>
  <name>Sonatype Open Source Snapshots</name>
  <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  <releases>
    <enabled>false</enabled>
  </releases>
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>

Related

Wiki: API
Wiki: CLI
Wiki: Introduction

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.