-
Notifications
You must be signed in to change notification settings - Fork 68
Download & Install
To use the latest release, download the appropriate version and put it
the plugins
directory in your Neo4j server installation and restart the server (server mode), or on the classpath (embedded mode).
The following downloads are available:
- GraphAware Framework for Embedded Mode, version 2.0.3.5
- GraphAware Framework for Server Mode (Community), version 2.0.3.5
- GraphAware Framework for Server Mode (Enterprise), version 2.0.3.5
Releases are synced to Maven Central repository. When using Maven for dependency management, include one of more of the following dependencies in your pom.xml. Read further down this page to find out which dependencies you will need. The available ones are:
<dependencies>
...
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>api</artifactId>
<version>2.0.3.5</version>
</dependency>
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>common</artifactId>
<version>2.0.3.5</version>
</dependency>
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>runtime</artifactId>
<version>2.0.3.5</version>
</dependency>
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>tests</artifactId>
<version>2.0.3.5</version>
</dependency>
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>tx-api</artifactId>
<version>2.0.3.5</version>
</dependency>
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>tx-executor</artifactId>
<version>2.0.3.5</version>
</dependency>
...
</dependencies>
To use the latest development version, just clone this repository and run mvn clean install
. This will produce 2.0.3.6-SNAPSHOT
jar files. If you need standalone .jar files with all dependencies (for server mode), clone this repository
and run mvn clean install
on that.
The version number has two parts. The first three numbers indicate compatibility with a Neo4j version. The last number is the version of the framework. For example, version 2.0.3.3 is version 3 of the framework compatible with Neo4j 2.0.3
Copyright (c) 2014 Graph Aware Limited
- Javadoc
- Downloads (all)
- Embedded (2.0.3.5)
- Community Server (2.0.3.5)
- Enterprise Server (2.0.3.5)