DimaSan
DimaSan

Reputation: 12684

Unresolved Dependency in Maven

Can anyone tell me please what's wrong with my dependency Hamcrest in Maven? That's a pity but I can't attach screenshot here.

The screenshot from IntelliJ IDEA

One the right side one can see that the dependency hamcrest-all:1.3 is inside dependency junit:4.11.

Maybe something wrong with my pom.xml file?

There is also a problem with hamcrest version 1.3 - dependency hamcrest:hamcrest-all:1.3 not found.

When I try to update Maven indices, nothing happens.

Upvotes: 1

Views: 14627

Answers (2)

HibaHasan
HibaHasan

Reputation: 1493

Sometimes, not specifying the dependency's version can give this Error

Unresolved Dependency

just specify the version of the dependency

example:

instead of this:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>

use this:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-bootstrap</artifactId>
    <version>3.1.2</version>
</dependency>

Upvotes: 0

Derek_M
Derek_M

Reputation: 1048

There is a slight difference between the group ids. Notice in the maven repository group id is org.hamcrest

http://mvnrepository.com/artifact/org.hamcrest/hamcrest-all/1.3

Upvotes: 5

Related Questions