Skip to content
Julia Damerow edited this page Oct 7, 2015 · 2 revisions

Developer Wiki

Set up Development Environment

Unfortunately the DB4O maven repository is no longer working. To manually install the necessary jar file, do the following:

  • In the cloned repository, there is a folder lib.
  • In a terminal, navigate to this folder.
  • Then run the following command:

mvn install:install-file -Dfile=db4o-8.0/lib/db4o-8.0.276.16149-all-java5.jar -DgroupId=com.db4o -DartifactId=db4o-full-java5 -Dversion=8.0 -Dpackaging=jar -DgeneratePom=true

This will install the DB4O jar in the folder in your local Maven repository. After that, Eclipse and Maven should work just fine with the Db4O dependency.

Note: You need Maven to be installed on your system and its bin folder needs to be in your PATH variable. If it is not you need to specify the whole path to mvn.

Clone this wiki locally