I've added a 'graphstream' dependency to my pom.xml file in a maven project, like so:
<dependency>
<artifactId>gs-core</artifactId>
<groupId>org.graphstream</groupId>
<version>2.0</version>
</dependency>
And then I've tried to import 'graphstream' to my java file:
import org.graphstream.*;
But when I'm running mvn install
I'm getting the following error
package org.graphstream does not exist
What did I do wrong?