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:
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
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
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>