Book Image

JIRA 4 Essentials

By :
Book Image

JIRA 4 Essentials

By:

Overview of this book

<p>This book will introduce you to Atlassian JIRA, the world's most popular issue tracking software. JIRA provides issue tracking and project tracking for software development teams to improve code quality and the speed of development.</p> <p>This book will show you how to plan and design your own JIRA implementation. You will learn how to customize JIRA to adapt it to your organization and add value to your business. Chapters are structured to guide you through all the key aspects of JIRA with a practical implementation. By the end of the book, you will have built a working JIRA implementation.</p> <p>You will start by setting up your own JIRA and be introduced to all the key features in subsequent chapters. With each chapter, you will learn important concepts such as business processes and workflows, e-mails and notifications, and you will have the opportunity to put your newly acquired knowledge into practice by following a live sample JIRA implementation.</p> <p>Packed with real-life example and step-by-step instructions, this book will help you become a JIRA expert.</p>
Table of Contents (17 chapters)
JIRA 4 Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Services


In Chapter 7, E-mail and Notification, we looked at mail handlers, which are used by JIRA to periodically poll mailboxes and create issues. Mail handler is an example of a feature in JIRA called Services.

A service is something that is run periodically by JIRA, performing a certain function. They are equivalent to that of a cron job in Unix or scheduled job in Windows. A mail handler for example, is a service that creates issues from e-mails pulled from the mail inbox. There are other services used by JIRA, such as the Mail Queue Service which flushes out notification e-mails. Services are a great way to set up some automated jobs in JIRA and are often used to integrate JIRA with other systems by constantly polling and sending information between the two.

JIRA comes with a list of useful services that you can install out of the box, but if you want to have services to perform specialized functions, you will need the help of plugins, which will be covered in the next section.

Adding...