I just downloaded a FOSS (Java) project that I am attempting to build on my machine. I imported the project into Eclipse (it did not have its own .project or .classpath file) and let it build. It built almost all the way. However, I am receiving a number of errors where the compiler is "Unable to resolve [X]" where [X] is any number of org.eclipse.* packages.
So, I browse my filesystem and attempt to bring in the packages that make sense to complete the build (if the error is for org.eclipse.core.runtime.FileLocator, I attempt to bring in org.eclipse.core.runtime_3.5.0v20090525), yet I am still receiving the same errors.
I searched on Google but I am not any farther than I was when I started. Anybody have any suggestions?
Edit: The project is UMLet.
Edit 2: There is a plugin.xml file. Looks as follows:
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<extension point="org.eclipse.ui.newWizards">
<wizard
name="UMLet diagram"
icon="icons/umlet_eclipse.gif"
category="com.umlet.plugin"
class="com.umlet.plugin.wizards.UMLetNewWizard"
id="com.umlet.plugin.wizards.UMLetNewWizard">
</wizard>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="com.umlet.plugin.editors.UMLetEditor"
contributorClass="com.umlet.plugin.editors.UMLetContributor"
default="false"
extensions="uxf"
icon="icons/umlet_eclipse.gif"
id="com.umlet.plugin.UMLetEditor"
name="UMLet Editor"/>
</extension>
</plugin>