Home > Software design >  Why doesn't intelliJ install the dependency
Why doesn't intelliJ install the dependency

Time:01-06

I'm trying to add the following dependency in the pom.xml with IntelliJ

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
</dependency>

The issue is that the spring-boot-devtools does not get added in my "External libraries" folder as it should as per https://www.jetbrains.com/help/idea/work-with-maven-dependencies.html#maven_dependency_multi_module

IntelliJ gives me the error : Dependency 'org.springframework.boot:spring-boot-devtools:3.0.1' not found

Why is the new dependency not added properly ?

CodePudding user response:

In order to have the dependency installed, you have to right click on the pom.xml > Maven > Reload project. The dependency gets added in the Externam Libraries folder and the error in pom.xml disappears

  • Related