IntelliJ Says it is "not found"
Answered
This is indeed in maven Central:
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-configuration2 --><dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-configuration2</artifactId> <version>2.11.0</version>
</dependency>
What is the problem?
Please sign in to leave a comment.
Have you tried to reload the maven project in the Maven tool window?
If it doesn't help, try to close IDE, delete
.ideafolder and any*.imlfiles in your project root folder in file explorer, and re-import the project from existing sources.Yes reloading the Maven project fixed the problem. Thanks for replkying. I don't think I should have to do that when I add an additional dependency on occasion
Satch
You can configure the auto-reload option: https://www.jetbrains.com/help/idea/delegate-build-and-run-actions-to-maven.html#auto_reload_maven.