I just inherited a java project written in 2016.
Being it a java api project i decided to download eclipse.
After loading the project I noticed that there are several compile errors. All of them regarding getters of properties in classes annotated with @Data
(from lombok.Data)...
I suspect that this is because i didn't run a maven "Download dependencies", but thats where i get short: i have zero experience with maven, lombok, and professional java development (i know java syntax and programming, but never professionally developed for it)
How can i "download dependencies" or similar command in order to clear the compile errors?
In ultima instance i could post the complete source code but i would like to do so only if absolutely required...