Lombok configuration in eclipse

Lombok automates getter,setter, equals and logging in java project. Add the following lombok dependency to pom.xml <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> You might face compilation issues or some red color…

Missing Maven dependencies in Eclipse

Edit .classpath file of java project Add the following into .classpath file: <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <attributes> <attribute name="maven.pomderived" value="true"/> <attribute name="org.eclipse.jst.component.nondependency" value=""/> </attributes> </classpathentry> 3. If the class path entry…