Skip to content
Kevin Livingston edited this page Jun 1, 2013 · 2 revisions

Location

Release Repository

releases are deployed to clojars:

<repository>
  <id>clojars.org</id>
  <url>http://clojars.org/repo</url>
</repository>

Snapshots

the snapshot release can be acquired by downloading the master branch of this repository and installing it locally:

git clone https://github.com/drlivingston/kr.git
mvn install

Dependencies

Core

the core dependency is kr-core:

<dependency>
  <groupId>edu.ucdenver.ccp</groupId>
  <artifactId>kr-core</artifactId>
  <version>1.4.8</version>
</dependency>

but the core dependency is unnecessary if you are brining in either the sesame implementation:

Sesame

(please see note on sesame versions: versions-and-sesame)

<dependency>
  <groupId>edu.ucdenver.ccp</groupId>
  <artifactId>kr-sesame-core</artifactId>
  <version>1.4.8</version>
</dependency>

Jena

or the jena implementation:

<dependency>
  <groupId>edu.ucdenver.ccp</groupId>
  <artifactId>kr-jena-core</artifactId>
  <version>1.4.8</version>
</dependency>
Clone this wiki locally