jung2 is in the maven repository, here and here .
But my Eclipse does not figure out:

The code is here:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>tests.jung</groupId>
<artifactId>TryJung</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung2</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</project>
UPDATE
Sorry, I canβt accept the answers to the question about the type of dependency, because it is not complete. The code for the jung dependencies was obtained directly from the Maven repository:

So, I need an explanation why the code taken from the repository site does not really work.
What is going on here, who is βto blameβ?
source
share