Skip to content
This repository has been archived by the owner on Oct 26, 2020. It is now read-only.

Installing mongomvcc

Michel Krämer edited this page Jan 24, 2015 · 3 revisions

Installing MongoMVCC

Grab MongoMVCC from our download page at GitHub and put it into your classpath. The library depends on the MongoDB Java driver which you should also download and add to your classpath. After that you're ready to go! The library has no other prerequisites.

OSGi

The jar library which you can get at our download page already is an OSGi bundle. So is the MongoDB Java driver. Simple put both libraries into your target platform.

Using a build tool

Maven

Add the following to your project's pom.xml:

<dependency>
  <groupId>de.fhg.igd</groupId>
  <artifactId>mongomvcc</artifactId>
  <version>0.7.1</version>
</dependency>

Gradle/Grails

Add the following to your build file:

compile 'de.fhg.igd:mongomvcc:0.7.1'

Buildr

Add the following to your project's buildfile:

compile.with 'de.fhg.igd:mongomvcc:jar:0.7.1'

Sbt

Add the following to your build.sbt:

libraryDependencies += "de.fhg.igd" % "mongomvcc" % "0.7.1"

Ivy

Add the following to your build file:

<dependency org="de.fhg.igd" name="mongomvcc" rev="0.7.1" >
  <artifact name="mongomvcc" type="jar" />
</dependency>