Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Eclipse package

Tags:

I'd like to package Eclipse + a few custom plugins, for internal use.

The package will contain the

  • Platform Runtime Binary ( win32 and linux x86 gtk );
  • Mylyn Task List;
  • Mylyn Focused UI;
  • Mantis Connector for Mylyn.

How can I produce these custom builds?

like image 545
Robert Munteanu Avatar asked Jul 30 '09 09:07

Robert Munteanu


People also ask

How do I set default package in Eclipse?

They appear under a node in the hierarchy called "default package". This is because if you don't specify a package for your class, it will be grouped with all other non-packaged classes in this default package. You can add a new package in Eclipse by right-clicking on your project and selecting New > Package.

What is an Eclipse package?

These packages are provided as a convenience to users; they represent common configurations of Eclipse projects that are often used together. However, since Eclipse is, at its core, an expandable platform, you can easily add other features and plugins to any of these packages.


1 Answers

You can follow the article "Composing and updating custom Eclipse distros" for eclipse Galileo.

If that approach is too complex, you can simply define a shared plugin directory in which you will dump the common plugins you need.

like image 85
VonC Avatar answered Sep 19 '22 16:09

VonC