This repository has been archived by the owner on Oct 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Installing mongomvcc
Michel Krämer edited this page Jan 24, 2015
·
3 revisions
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.
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.
Add the following to your project's pom.xml
:
<dependency>
<groupId>de.fhg.igd</groupId>
<artifactId>mongomvcc</artifactId>
<version>0.7.1</version>
</dependency>
Add the following to your build file:
compile 'de.fhg.igd:mongomvcc:0.7.1'
Add the following to your project's buildfile
:
compile.with 'de.fhg.igd:mongomvcc:jar:0.7.1'
Add the following to your build.sbt
:
libraryDependencies += "de.fhg.igd" % "mongomvcc" % "0.7.1"
Add the following to your build file:
<dependency org="de.fhg.igd" name="mongomvcc" rev="0.7.1" >
<artifact name="mongomvcc" type="jar" />
</dependency>