The OrientDB development team is very active so if you’ve started learning OrientDB right now we suggest to clone the source repository and use the “develop” branch (latest SNAPSHOT). Follow these instructions. Is a snapshot stable enough? All the SNAPSHOTs pass the thousands of test cases, so the answer is YES. However don’t worry, we usually create a new stable release from the SNAPSHOT about every 3 months. If however you’re afraid of using a SNAPSHOT yet, it’s ok: use a stable one and follow the Installation instructions.

Release Status Suggested for Maven Repository GIT branch
2.0-SNAPSHOT Development Development Snapshot - pom.xml develop
1.7.6 Production Production pom.xml master

For older release or more information go to the official download page.


What distribution should I use ?

OrientDB comes with 2 distributions:

  • OrientDB Community Edition, the default Open Source version released with Apache 2 license
  • OrientDB Enterprise Edition, based on the Community Edition, adds Enterprise Level features. It’s available with support by Orient Technologies company and has a commercial version.

Version numbers

Starting from release 1.0 OrientDB uses the Semantic Versioning approach.

Consider a version format of X.Y.Z (Major.Minor.Patch). Bug fixes not affecting the API increment the patch version, backwards compatible API additions/changes increment the minor version, and backwards incompatible API changes increment the major version.

This system is called “Semantic Versioning.” Under this scheme, version numbers and the way they change convey meaning about the underlying code and what has been modified from one version to the next.

Distributions

Download latest official release at this page.

Download binaries from Maven repository

Get single binaries as jars form the Sonatype’s Official Maven Repository.

Latest Snapshot

This is the suggested download if want to have and use the last version with all the new features and bugs fixed. Snapshot builds always compile and pass all the test cases. These packages don’t contain the “GratefulDeadConcerts” database. To create it just run the test suite with “ant test”.

Download the last snapshot.

From continuous integration

This is the place where you can always find the last version automatically compiled from Git at every change: http://helios.orientechnologies.com

Via MAVEN repository

If you want to use OrientDB through Java the best and easy way is through Apache Maven. If you want to use the client/server version you need the Full distribution.

Add this snippet in your pom.xml file:

Add “bundle” artifact type to the list of Maven types

  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.felix</groupId>
  5. <artifactId>maven-bundle-plugin</artifactId>
  6. <version>2.3.6</version>
  7. <extensions>true</extensions>
  8. </plugin>
  9. </plugins>
  10. </build>

Last stable

  1. <dependency>
  2. <groupId>com.orientechnologies</groupId>
  3. <artifactId>orient-commons</artifactId>
  4. <version>1.7.6</version>
  5. <type>bundle</type>
  6. </dependency>
  7. <dependency>
  8. <groupId>com.orientechnologies</groupId>
  9. <artifactId>orientdb-core</artifactId>
  10. <version>1.7.6</version>
  11. <type>bundle</type>
  12. </dependency>
  13. <!-- INCLUDE THIS IF YOU'RE CONNECTING TO THE SERVER THROUGH THE REMOTE ENGINE -->
  14. <dependency>
  15. <groupId>com.orientechnologies</groupId>
  16. <artifactId>orientdb-client</artifactId>
  17. <version>1.7.6</version>
  18. <type>bundle</type>
  19. </dependency>
  20. <!-- END REMOTE ENGINE DEPENDENCY -->

Last snapshot (compiles and pass all the test cases)

Snapshots are hosted on official Maven Sonatype.org repository.

  1. <dependency>
  2. <groupId>com.orientechnologies</groupId>
  3. <artifactId>orient-commons</artifactId>
  4. <version>2.0-SNAPSHOT</version>
  5. <type>bundle</type>
  6. </dependency>
  7. <dependency>
  8. <groupId>com.orientechnologies</groupId>
  9. <artifactId>orientdb-core</artifactId>
  10. <version>2.0-SNAPSHOT</version>
  11. <type>bundle</type>
  12. </dependency>
  13. <!-- INCLUDE THIS IF YOU'RE CONNECTING TO THE SERVER THROUGH THE REMOTE ENGINE -->
  14. <dependency>
  15. <groupId>com.orientechnologies</groupId>
  16. <artifactId>orientdb-client</artifactId>
  17. <version>2.0-SNAPSHOT</version>
  18. <type>bundle</type>
  19. </dependency>
  20. <!-- END REMOTE ENGINE DEPENDENCY -->
  21. <!-- INCLUDE THIS IF YOU'RE USING THE TINKERPOP'S BLUEPRINTS API -->
  22. <dependency>
  23. <groupId>com.tinkerpop.blueprints</groupId>
  24. <artifactId>blueprints-orient-graph</artifactId>
  25. <version>2.5.0</version>
  26. <type>bundle</type>
  27. </dependency>
  28. <!-- END BLUEPRINTS DEPENDENCY -->
  29. <repository>
  30. <id>sonatype-nexus-releases</id>
  31. <name>Sonatype Nexus Snapshots</name>
  32. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  33. </repository>

Compile it by your own

The OrientDB development team is very active, so if your in the middle of the development of your application we suggest to use last SNAPSHOT from the git source repository. All you need is:

Then follow these simple steps:

  1. > git clone --branch develop https://github.com/orientechnologies/orientdb.git
  2. > cd orientdb
  3. > ant clean install

At the end of the build you will have a brand new distribution under the path: ../releases/orientdb-community-2.0-SNAPSHOT. Use it as a normal OrientDB distribution directory.

Every time you want to update your distribution with last changes do:

  1. > git pull origin develop
  2. > ant clean install

At the end of the build your distribution (../releases/orientdb-community-2.0-SNAPSHOT) will be updated with last OrientDB libraries.

Every time you compile a new version, assure to have the permissions to execute the .sh files under the “bin” directory:

  1. > cd ../releases/orientdb-community-2.0-SNAPSHOT/bin
  2. > chmod u+x *.sh

Badges

Below the badges you can use in your web site, application and presentation to say to the world “Hey, I’m using OrientDB!”. The best would be linking that button to the web site: http://www.orientdb.com

Once used you can tell us your story to be published between the Production deployments page.

DescriptionImage normal sizeImage small size
Classic buttonimageimage
Reflex buttonimageimage
Blue buttonimageimage
Green buttonimageimage