Skip to content
lvca edited this page Dec 28, 2012 · 4 revisions

Download

Instructions for the impatient people

Download an Official release or get single binaries as jars form the Sonatype's Maven Repository. Want latest fresh SNAPSHOT? Once you've download OrientDB follow the Installation instructions.

<wiki:toc max_depth="4" />

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.org

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

Description Image normal size Image small size
Classic button
Reflex button
Blue button
Green button

What distribution should I use ?

OrientDB comes with 2 distributions:

The Graph Edition is the same of OrientDB main package with something more:

If you have planned to use the TinkerPop stack download the Graph Edition, otherwise the base distribution is enough. Consider that you can start with the base distribution and then switch to the Graph Edition.

Version numbers

Starting from release 1.0.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.

Full distribution

Official distribution

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 "demo" 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 the SVN trunk: http://datastorm.com.ua/jenkins/job/orient-svn-maven/

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

    <build>
      <plugins>
        <plugin>
          <groupId>org.apache.felix</groupId>
          <artifactId>maven-bundle-plugin</artifactId>
          <version>2.3.6</version>
          <extensions>true</extensions>
        </plugin>
      </plugins>
    </build>

Maven repository for stables

Starting from 1.0rc9 the repository is the official Sonatype Maven repository, so you don't have to configure it in your pom.xml file.

Last stable

    <dependency>
      <groupId>com.orientechnologies</groupId>
      <artifactId>orient-commons</artifactId>
      <version>1.3.0</version>
      <type>bundle</type>
    </dependency>
    <dependency>
      <groupId>com.orientechnologies</groupId>
      <artifactId>orientdb-core</artifactId>
      <version>1.3.0</version>
      <type>bundle</type>
    </dependency>
    <!-- INCLUDE THIS IF YOU'RE CONNECTING TO THE SERVER THROUGH THE REMOTE ENGINE -->
    <dependency>
      <groupId>com.orientechnologies</groupId>
      <artifactId>orientdb-client</artifactId>
      <version>1.3.0</version>
      <type>bundle</type>
    </dependency>
    <!-- END REMOTE ENGINE DEPENDENCY -->
    
    <repository>
      <id>oss.sonatype.org</id>
      <name>OrientDB Maven2 Repository</name>
      <url>https://oss.sonatype.org/content/groups/public/</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>

Last snapshot (compiles and pass all the test cases)

Snapshots are hosted on official Maven Sonatype.org repository.

    <dependency>
      <groupId>com.orientechnologies</groupId>
      <artifactId>orient-commons</artifactId>
      <version>1.4.0-SNAPSHOT</version>
      <type>bundle</type>
    </dependency>
    <dependency>
      <groupId>com.orientechnologies</groupId>
      <artifactId>orientdb-core</artifactId>
      <version>1.4.0-SNAPSHOT</version>
      <type>bundle</type>
    </dependency>
    
    <!-- INCLUDE THIS IF YOU'RE CONNECTING TO THE SERVER THROUGH THE REMOTE ENGINE -->
    <dependency>
      <groupId>com.orientechnologies</groupId>
      <artifactId>orientdb-client</artifactId>
      <version>1.4.0-SNAPSHOT</version>
      <type>bundle</type>
    </dependency>
    <!-- END REMOTE ENGINE DEPENDENCY -->
    
    <!-- INCLUDE THIS IF YOU'RE USING THE TINKERPOP'S BLUEPRINTS API -->
    <dependency>
      <groupId>com.tinkerpop.blueprints</groupId>
      <artifactId>blueprints-orient-graph</artifactId>
      <version>2.2.0</version>
      <type>bundle</type>
    </dependency>
    <!-- END BLUEPRINTS DEPENDENCY -->
    
    <repository>
      <id>sonatype-nexus-releases</id>
      <name>Sonatype Nexus Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
Clone this wiki locally