Skip to main content

Posts

Showing posts with the label Eclipse

Solution for the Error : An internal error occured during: "reload maven project"

You might have faced this issue after changing the project name or may be changing project name in pom.xml. When you restart your eclipse it may not launch due to project metadata file is corrupted due to your .project name changes and Maven can not laod your project properly and will displays this error shown above and eclipse console will not be opened. To get rid off this issue follow the solution given below

Java.Warning - Build path specifies execution environment J2SE-1.6

When you creat a Java Maven Project in the Eclipse, your Eclipse may show the following warning " Build path specifies execution environment J2SE-1.6. There are no JREs installed in the workspace that are strictly compatible with this environment. " To get resolve from this project setup issue by following steps. Solution: Go to your project   ---> Properties ---> Java build path : Libraries --->Remove the "JRE System Library[J2SE 1.6]" ---> Click "Add Library" button -> JRE System Library ---> Select the new "Executin Environment" or Workspace default JRE Hope your problem is solved now.