-
Notifications
You must be signed in to change notification settings - Fork 17
Maven coordinates
Kevin Livingston edited this page Jun 1, 2013
·
2 revisions
releases are deployed to clojars:
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
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
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:
(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>
or the jena implementation:
<dependency>
<groupId>edu.ucdenver.ccp</groupId>
<artifactId>kr-jena-core</artifactId>
<version>1.4.8</version>
</dependency>