Trying to run the JGraphT hello world example, POM per here looks like:
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>1.4.0</version>
But this is not pulling down the org.jgrapht.nio.* it seems, file tree below:
What do I need in the POM to do these successfully:
import org.jgrapht.nio.*;
import org.jgrapht.nio.dot.DOTExporter;
Thanks