Book Image

Getting Started with Eclipse Juno

By : Rodrigo Fraxino Araujo, Vinicius H. S. Durelli, Rafael M. Teixeira
Book Image

Getting Started with Eclipse Juno

By: Rodrigo Fraxino Araujo, Vinicius H. S. Durelli, Rafael M. Teixeira

Overview of this book

<p>Integrated Development Environments (IDEs) such as Eclipse are examples of tools that help developers by automating an assortment of software development-related tasks. By reading this book you will learn how to get Eclipse to automate common development tasks, which will give you a boost of productivity.<br /><br />Getting Started with Eclipse Juno is targeted at any Java programmer interested in taking advantage of the benefits provided by a full-fledged IDE. This book will get the reader up to speed with Eclipse’s powerful features to write, refactor, test, debug, and deploy Java applications.<br /><br />This book covers all you need to know to get up to speed in Eclipse Juno IDE. It is mainly tailored for Java beginners that want to make the jump from their text editors to a powerful IDE. However, seasoned Java developers not familiar with Eclipse will also find the hands-on tutorials in this book useful.</p> <p><br />The book starts off by showing how to perform the most basic activities related to implementing Java applications (creating and organizing Java projects, refactoring, and setting launch configurations), working up to more sophisticated topics as testing, web development, and GUI programming.</p> <p><br />This book covers managing a project using a version control system, testing and debugging an application, the concepts of advanced GUI programming, developing plugins and rich client applications, along with web development.</p>
Table of Contents (17 chapters)
Getting Started with Eclipse Juno
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
4
Version Control Systems
Index

Exporting a plugin


So far we have only executed our plugins in our runtime workbench. In order to provide our plugin to be installed in other machines, we have to export it. To do it, right-click your plugin project and select Export. The export wizard contains four different ways of exporting plugin projects. We will use the Deployable plug-ins and fragments option. Select it and click on Next.

The next wizard page allows you to choose the plugins you wish to export. There are three possible destinations for your plugins: a directory, an archive file, or a host. If you choose to export your plugins into a directory, each plugin will be bundled into its own .jar file and placed inside a plugins folder. To install your plugins, simply move these jar files into the plugins folder inside your Eclipse installation folder. The archive option does the same thing, but on top of that archives the plugins folder into a .zip file. The Install into host option allows you to deploy your plugin directly...