Right click on your project, run it as -> maven install.
If you do not see them, you either installed m2e incorrectly, or you need to import the project as a maven project.
In this case, delete the project from the workspace ( do not check "delete contents on disk"). Right-click in the project explorer and click on import ... In this dialog box, you can select existing maven projects where you need to go to the highest directory containing the pom.xml file.
Alternatively, if maven is installed on your computer (and not m2e in eclipse), you can open the directory containing pom.xml and simply type mvn clean install . This will create your project. If you get the message "Build Success", you will find out that the dependencies are received correctly.
source share