Reputation: 11
I am new in Semantic Web Application.
Here I intend to use Snap SPARQL for querying my project because I want to use reasoning. But so far, I just found Snap SPARQL Plugin for Protege. I need a Snap SPARQL API that I can use to code in Eclipse.
So, does Snap SPARQL API exist?
I tried to use this dependency on Maven project based on this link, but it failed.
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>snap-sparql-query-api</artifactId>
<version>2.0.0</version>
</dependency>
Failed to read artifact descriptor for edu.stanford.protege:snap-sparql-query-api:jar:2.0.0
How I should write the dependency? or where I should download .jar file?
Thank you!
Upvotes: 1
Views: 636
Reputation: 62683
Yes, it exists. You can find it here:
https://github.com/protegeproject/autoupdate/tree/master/snap-sparql-query
According to this page, Snap SPARQL is :
A [Protégé] plug-in for querying ontologies with SPARQL-DL. This plug-in was developed for tutorial purposes as part of the Protege Short Course series. We make no quality guarantees regarding use in production environments.
Upvotes: 1