PainIsAMaster
PainIsAMaster

Reputation: 2076

Maven dependencies in IntelliJ project

I have an intelliJ project in Java that's using Maven/Spring/SpringBoot for my internship and I just cloned the repo from AzureDevOps and was having some errors for my dependencies , which can be seen on the bottom right of the photo for the "service-integration" directory/module.

I'm new to Maven and was wondering if someone could explain what's going on and how I can remedy the situation. After cloning the repo I ran did run "mvn clean install" and the BUILD was SUCCESSFUL and I did load the pom.xml files to create the modules for the root directories but I am still getting dependencies errors (red squigly lines) for the service-integration.

Any help or clarification would be greatly appreciated.

enter image description here

Upvotes: 1

Views: 1143

Answers (2)

jirka.pinkas
jirka.pinkas

Reputation: 940

This is nasty. In some companies people just get used to it. :-(

There are many things you can try:

Upvotes: 2

sudipn
sudipn

Reputation: 609

First try to build your project in IntelliJ, Build -> Rebuild Project. If that does not help, try File -> Invalidate cache/ restart..

Upvotes: 1

Related Questions