The problem is that the project has dependencies on libraries that are managed using Maven , which Eclipse does not automatically configure.
You need to download first and then install Maven . Then you can open a command prompt window and run mvn install from the project directory, which will create the code and pull out any necessary dependencies.
Finally, you need to go into Eclipse and configure it so that it knows your local Maven repository ...
- Window โ Settings
- Java โ Build Path โ Class Variables โ New
name will be M2_REPOpath will be something like c:\users\drew\.m2\repository- Click OK twice
If you recompile in Eclipse, these errors should go away.
source share