Book Image

Extending Jenkins

By : Donald Simpson
Book Image

Extending Jenkins

By: Donald Simpson

Overview of this book

Jenkins CI is the leading open source continuous integration server. It is written in Java and has a wealth of plugins to support the building and testing of virtually any project. Jenkins supports multiple Software Configuration Management tools such as Git, Subversion, and Mercurial. This book explores and explains the many extension points and customizations that Jenkins offers its users, and teaches you how to develop your own Jenkins extensions and plugins. First, you will learn how to adapt Jenkins and leverage its abilities to empower DevOps, Continuous Integration, Continuous Deployment, and Agile projects. Next, you will find out how to reduce the cost of modern software development, increase the quality of deliveries, and thereby reduce the time to market. We will also teach you how to create your own custom plugins using Extension points. Finally, we will show you how to combine everything you learned over the course of the book into one real-world scenario.
Table of Contents (16 chapters)
Extending Jenkins
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

IntelliJ IDEA and Jenkins build connectors


IntelliJ IDEA, developed by JetBrains, is another very popular Integrated Development Environment, and, similar to Eclipse, it also has a large number of add-ons and plugins that are available to extend its use and functionality.

In this section, we will take a quick look at installing and configuring the Jenkins Control Plugin for IntelliJ IDEA, and we will configure it to provide a functionality similar to that provided by Mylyn under Eclipse.

Installing plugins in IntelliJ is very easy—open the Preferences menu item, then select Plugins on the left-hand side menu. The Jenkins Control plugin is not currently bundled with the IDE, so click on the Browse repositories… button as shown in the following screenshot:

This opens up a new subwindow where you can enter Jenkins in the search dialogue to find the two (currently) available plugins, as follows:

Click on the green Install Plugin button—the plugin will be downloaded and you will be prompted to restart...