< Day Day Up > |
Recipe 12.1 Installing a Plug-in12.1.1 ProblemYou want to install an Eclipse plug-in. 12.1.2 SolutionDownload the plug-in, and expand it in the Eclipse plugins directory. 12.1.3 DiscussionNumerous plug-ins are available already, and many are free for the downloading. To install a plug-in, stop Eclipse if it's running, and download the plug-in to the eclipse directory, the directory that contains the workspace and plugins directories.
Eclipse plug-ins come zipped or tarred, and you typically uncompress them in the eclipse directory. When uncompressed, the files for the plug-ins are stored automatically in the plugins and features directories. Each plug-in gets its own folder in the Eclipse plugins directory. Typically, you'll find the following files in every plug-in's folder:
That's all you need to do to install a plug-in. After expanding the plug-in's compressed file, start Eclipse again. You might see a dialog indicating that configuration changes are pending; restart Eclipse again if necessary. |
< Day Day Up > |