Download & Install - graphaware/neo4j-framework GitHub Wiki

Getting GraphAware Framework

Releases

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:

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>

Snapshots

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.

Note on Versioning Scheme

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

⚠️ **GitHub.com Fallback** ⚠️