Book Image

Jenkins Essentials

By : Mitesh Soni
Book Image

Jenkins Essentials

By: Mitesh Soni

Overview of this book

<p>In agile development practices, developers need to integrate their work frequently to fix bugs or to create a new feature or functionality. To integrate all work efficiently and verify it is an error-prone and time-consuming manual task. Jenkins is used specifically for continuous integration, helping to enforce the principles of agile development.</p> <p>This book begins by tackling the installation of the necessary software dependencies and libraries you'll need to perform continuous integration for a Java application. From there, you'll integrate code repositories, applications, and build tools for the implementation of continuous integration. Finally, you'll explore the automated deployment of an application in Tomcat, along with details on managing and configuring Jenkins based on your requirements by using plugins.</p>
Table of Contents (15 chapters)
Jenkins Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Exploring Static Code Analysis Plugins


Static Code Analysis Plugins provide utilities for the static code analysis plugins. Jenkins interprets the result files of several static code analysis tools with the use of different plugins for configuration and parsing. We can have more flexibility with these plugins to build exactly what you want.

To install any of these plugins, go to the Jenkins dashboard, click on Manage Jenkins, and select the Manage Plugins link. Go to the Available tab, find the respective plugin, and select it. Click on Download now, and install after restart.

All these results are visualized by the same backend. The following plugins use the same visualization:

Checkstyle Plugin

The Checkstyle plugin generates the report for an open source static code analysis program, Checkstyle.

To know more about the Checkstyle plugin, visit https://wiki.jenkins-ci.org/display/JENKINS/Checkstyle+Plugin.

FindBugs Plugin

The FindBugs plugin is supported by the Static Analysis Collector plugin...