Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unbound class path container error in eclipse?

Tags:

I tried to import my project into ecclipse, but im get following error Description
Unbound classpath container: 'JRE System Library [jre1.5.0_16]' in project 'myproject', How i can resolve this error

like image 658
kiran Avatar asked Jul 23 '11 04:07

kiran


1 Answers

An unbounded classpath container for an Eclipse project implies that the JRE associated with the project is not available in the list of JREs available in the workspace. You will need to modify your Java build path (accessible via Project Preferences), to use a JRE definition that is valid in your workspace.

Eclipse - Edit JRE System Library

You can choose your workspace default JRE or an alternate JRE, or even a JRE that matches an execution environment (like Java 5 or Java 6).

Eclipse - JRE specification

Edit: As an alternative, you can add the missing JRE to your workspace. http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftask-add_new_jre.htm

like image 121
Vineet Reynolds Avatar answered Sep 23 '22 17:09

Vineet Reynolds