Table of Contents
To build JanusGraph you need git and Maven.
- Clone the JanusGraph repository from GitHub to a local directory.
- In that directory, execute
mvn clean install
. This will build JanusGraph and run the internal test suite. The internal test suite has no external dependencies. Note, that running all test cases requires a significant amount of time. To skip the tests when building JanusGraph, executemvn clean install -DskipTests
- For comprehensive test coverage, execute
mvn clean test -P comprehensive
. This will run additional test covering communication to external storage backends, performance tests and concurrency tests. The comprehensive test suite uses Cassandra and HBase as external databases and requires that Cassandra and HBase are installed. Note, that running the comprehensive test suite requires a significant amount of of time (> 1 hour).
For developing against the most current version of JanusGraph, depend on JanusGraph snapshot releases. Note, that these releases are development releases and therefore unstable and likely to change. Unless one is interested in the most recent development status of JanusGraph, we recommend to use the stable JanusGraph release instead.
<dependency> <groupId>org.janusgraph</groupId> <artifactId>janusgraph-core</artifactId> <version>X.Y.Z-SNAPSHOT</version> </dependency>
Check the master branch for the most current release version. SNAPSHOTs will be available through the Sonatype repository.
When adding this dependency, be sure to add the following repository to the pom.xml
:
<repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository>