Home > front end >  Dependency 'org.modelmapper:modelmapper:' not found
Dependency 'org.modelmapper:modelmapper:' not found

Time:01-17

I am using springBoot 2.7.7 with maven and when I paste ModelMapper dependency in my pom.xml, it shows error saying: Dependency 'org.modelmapper:modelmapper:' not found

settings.xml file location example

If you have a file like that, maven may look for dependencies on other repositories addresses instead of the default one.

So just delete or rename it. run maven again and restore the file back.

  • Related