Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the best resources to get started with Eclipse plugin development? [closed]

I'm interested in writing eclipse plugins where do I start?

What resources have helped you?

I'm looking for:
1. Tutorials
2. Sites devoted to plugin development
3. Books

like image 889
JeffV Avatar asked Sep 07 '08 13:09

JeffV


People also ask

Which plugin is needed for Java development in Eclipse?

Spring Tool is the most popular Java plugin in Eclipse used to create Spring Boot projects. This plugin comes with tools used to run and monitor apps from inside IDE. You can also navigate through spring-specific code completion.

Are Eclipse plugins safe?

An Eclipse plug-in is basically a Java program, running inside Eclipse (and thus with the same credentials/permissions). Running an untrusted Eclipse plug-in is approximately as safe as running an untrusted Java program.

Are Eclipse plugins free?

Steps 2 Eclipse Plug-inDownload for Free. Available in English and French.


2 Answers

I have done quite a bit with an RCP application that made use of multiple plug-ins. This book helped me tremendously in all fronts: RCP framework and plug-in development: http://www.amazon.com/Eclipse-Rich-Client-Platform-Applications/dp/0321334612

The book walks you through the development of a IM chat client using RCP and plug-in development.

Also the eclipse site and IBM have some pretty good tutorials, here is one: http://www.ibm.com/developerworks/library/os-ecplug/

like image 173
mmattax Avatar answered Nov 03 '22 22:11

mmattax


You can find a good step by step detailed tutorial here:

http://www.eclipsepluginsite.com/

Other tutorials:

http://www.ibm.com/developerworks/opensource/library/os-eclipse-snippet/index.html?ca=dgr-lnxw16RichEclipse

http://www.vogella.de/articles/EclipsePlugIn/article.html

A decent book, that I've used is "Eclipse: Building Commercial-Quality Plug-Ins".

like image 28
kjv Avatar answered Nov 03 '22 21:11

kjv