Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do I add a missing bundle in Eclipse?

When installing tools for AWS in Eclipse, I encountered the following error:

Cannot complete the install because one or more required items could not be found. Software currently installed: Amazon SimpleDB Management 1.0.0.v201111161400 (com.amazonaws.eclipse.datatools.enablement.simpledb.feature.feature.group 1.0.0.v201111161400) Missing requirement: Eclipse Data Tools Platform Amazon SimpleDB UI Plug-in 1.0.0.v201111161400 (com.amazonaws.eclipse.datatools.enablement.simpledb.ui 1.0.0.v201111161400) requires 'bundle org.eclipse.datatools.sqltools.sqlscrapbook 1.0.0' but it could not be found Cannot satisfy dependency: From: Amazon SimpleDB Management 1.0.0.v201111161400 (com.amazonaws.eclipse.datatools.enablement.simpledb.feature.feature.group 1.0.0.v201111161400) To: com.amazonaws.eclipse.datatools.enablement.simpledb.ui [1.0.0.v201111161400]

What is the problem here and how do I resolve it? Sorry, but I am new to Eclipse and Java dev in general. Could the following message be the key?

requires 'bundle org.eclipse.datatools.sqltools.sqlscrapbook 1.0.0' but it could not be found

like image 262
MedicineMan Avatar asked Dec 28 '11 23:12

MedicineMan


3 Answers

I found that the answer Jerinaw sourced from the AWS forum didn't work for me. I had to do it a little different (Indigo Java EE IDE) :

Details:

  1. Launch the new software installer in Eclipse (Help -> Install New Software...)

  2. In the "Work with:" field fill in the url according to your Eclipse version (if you're using indigo, kepler, or luna, just replace mars with your version's name in the below url).

    http://download.eclipse.org/releases/mars

The address should already be in the "Work with:" drop-down.

  1. Click on the check box next to "Database Development" (click next, accept license, click finish, should be prompted for restart).

  2. Launch the new software installer and in the "work with:" field enter http://aws.amazon.com/eclipse

  3. Select the packages you please and install

like image 160
David Avatar answered Nov 02 '22 18:11

David


Here is a better answer:

https://forums.aws.amazon.com/thread.jspa?messageID=374353

Re: Installing AWS Java SDK Plugin for Eclipse -- issues Posted by: Steven McGraw
Posted on: Aug 21, 2012 8:42 PM in response to: ZachM@AWS Reply error , aws , java , eclipse , plugin , j2ee , indigo As I have Indigo installed (IDE without EE), I first had to install the Data Tools Platform on top of Indigo to avoid seeing this error (as mentioned above).

Details: Launch the new software installer in Eclipse (Help -> Install New Software...) Add on the DTP repository site (click 'Add' and I installed from this site: Link: http://download.eclipse.org/datatools/updates/ and name it something like "DTP") As I wanted the latest version of DTP so I selected the DTP 1.10.0 Extender SDK (Includes source and JavaDocs) If you want to see quickly what versions of DTP exist, go here: Link: http://eclipse.org/datatools/downloads.php as ZachM pointed to above.

So that all worked for me, thanks ZachM.

like image 3
Jerinaw Avatar answered Nov 02 '22 19:11

Jerinaw


It turns out that if you install Eclipse for Java Developers, you may be missing some components. Select "Eclipse IDE for Java EE Developers" instead and you will not encounter this issue.

like image 1
MedicineMan Avatar answered Nov 02 '22 20:11

MedicineMan