1

What is the command line option to start eclipse with a specific project?

I can get the correct workspace using -data.

Within that workspace, I want to have a specific project loaded, similar to the "Go Into" command.

soupagain
  • 1,093
  • 4
  • 16
  • 31
  • related: http://stackoverflow.com/questions/1087573/open-a-specific-eclipse-project-from-command-line – dogbane Sep 26 '10 at 15:16

2 Answers2

2

I don't think there is such an option right now.

Oening a file from the command line has only taken 9 years: bug 4922:
If your Eclipse Helios 3.6 eclipse.ini file contains "--launcher.defaultAction", you can open any file with:

eclipse.exe myFile

But open directly a project is still missing.

VonC
  • 1,129,465
  • 480
  • 4,036
  • 4,755
0

See this SO question which contains an Eclipse plugin that only loads specific projects (which are defined in a config file) into the workspace.

Community
  • 1
  • 1
dogbane
  • 254,755
  • 72
  • 386
  • 405