Karl Iggy
Karl Iggy

Reputation: 31

Eclipse: missing eclipse application launch configuration

I want to choose an Eclipse Application Launch configuration in the Run/Debug Configuration of eclipse, for running an eclipse plugin, but it doesnt exists.

How can I add the Eclipse Application Launch configurations in the run/debug configurations. I'm using Eclipse Luna IDE for Java Developers.

Upvotes: 3

Views: 4949

Answers (1)

JimiLoe
JimiLoe

Reputation: 978

You are missing the Eclipse Project SDK, which is needed to create Eclipse Applications. Without it, you will notice for example these problems:

  • The Run/Debug configuration is missing a category "Eclipse Applications" (as you mentioned)
  • The Windows / Preferences dialog is missing a category "Plug-in Development"
  • Importing launch configurations for "Eclipse Applications" will have no effect.

You install the Eclipse Project SDK like this:

Screenshot

Upvotes: 6

Related Questions