-
Notifications
You must be signed in to change notification settings - Fork 17
Home
drlivingston edited this page Jun 14, 2012
·
20 revisions
The KR library is for working with knowledge representations and knowledge bases. Currently it facilitates use of RDF-based representations backed by triple-/quad- stores. It provides a consistent clojure based way of interacting with its backing implementations, which currently include the Jena and Sesame APIs.
releases are deployed to clojars:
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
the core dependency is kr-core:
<dependency>
<groupId>edu.ucdenver.ccp</groupId>
<artifactId>kr-core</artifactId>
<version>1.4.0</version>
</dependency>
but the core dependency is unnecessary if you are brining in either the sesame or jena implementations:
<dependency>
<groupId>edu.ucdenver.ccp</groupId>
<artifactId>kr-sesame-core</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>edu.ucdenver.ccp</groupId>
<artifactId>kr-jena-core</artifactId>
<version>1.4.0</version>
</dependency>
open sourced by:
CCP Lab
University of Colorado Denver
primary developer: Kevin Livingston