Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.JanusGraph:JanusGraph:1.0.0-rc2'
}
dependencies {
implementation("com.github.JanusGraph:JanusGraph:1.0.0-rc2")
}
<dependency>
<groupId>com.github.JanusGraph</groupId>
<artifactId>JanusGraph</artifactId>
<version>1.0.0-rc2</version>
</dependency>
libraryDependencies += "com.github.JanusGraph" % "JanusGraph" % "1.0.0-rc2"
:dependencies [[com.github.JanusGraph/JanusGraph "1.0.0-rc2"]]
JanusGraph is a highly scalable graph database optimized for storing and querying large graphs with billions of vertices and edges distributed across a multi-machine cluster. JanusGraph is a transactional database that can support thousands of concurrent users, complex traversals, and analytic graph queries.
The project homepage contains more information on JanusGraph and provides links to documentation, getting-started guides and release downloads.
JanusGraph has a web-based graph visualizer located in janusgraph-visualizer repository.
In additional to the web-based graph visualizer, JanusGraph supports a range of third party graph visualizers listed below:
GitHub Discussions: see GitHub Discussions
for all general discussions and questions about JanusGraph
Discord for interactive discussions and questions about JanusGraph: Join the server
Stack Overflow: see the
janusgraph
tag
Twitter: follow @JanusGraph for news and updates
LinkedIn: follow JanusGraph for news and updates
Mailing lists:
janusgraph-users (at) lists.lfaidata.foundation (archives) for questions about using JanusGraph, installation, configuration, integrations
To join with a LF AI & Data account, use the web UI; to subscribe/unsubscribe with an arbitrary email address, send an email to:
janusgraph-dev (at) lists.lfaidata.foundation (archives) for internal implementation of JanusGraph itself
To join with a LF AI & Data account, use the web UI; to subscribe/unsubscribe with an arbitrary email address, send an email to:
janusgraph-announce (at) lists.lfaidata.foundation (archives) for new releases and news announcements
To join with a LF AI & Data account, use the web UI; to subscribe/unsubscribe with an arbitrary email address, send an email to:
Please see CONTRIBUTING.md
for more information, including
CLAs and best practices for working with GitHub.
The following users have deployed JanusGraph in production.
If you use JanusGraph in your research, please cite it using this metadata:
@software{janusgraph_2024,
title = {JanusGraph: an open-source, distributed graph database},
author = {{JanusGraph Contributors}},
year = {2024},
version = {1.1.0},
publisher = {Zenodo},
doi = {10.5281/zenodo.14807604}
}