1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
---
title: "Jumpstart"
bg: green
color: black
fa-icon: bolt
---
## Maven
JGraphT releases are published to the **Maven Central Repository**, so you can
easily add us as a dependency to your project:
<pre><code><groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>1.5.1</version>
</code></pre>
(There are also [instructions](https://github.com/jgrapht/jgrapht#using-via-maven) for how to use the latest **SNAPSHOT** build instead.)
<br>
## Development Environment
First, find out how to set up [your favorite IDE (or the command line)](https://github.com/jgrapht/jgrapht/wiki/Users:-How-to-use-JGraphT-as-a-dependency-in-your-projects) to work with JGraphT.
<br>
## Hello JGraphT
Next, try compiling and running the [hello world](guide/HelloJGraphT) example.
Once you get that working, dig into the [user guide](guide/UserOverview) to learn more about JGraphT!
|