Book Image

Hands-On Agile Software Development with JIRA

By : David Harned
Book Image

Hands-On Agile Software Development with JIRA

By: David Harned

Overview of this book

As teams scale in size, project management can get very complicated. One of the best tools to deal with this kind of problem is JIRA. This book will start by organizing your project requirements and the principles of Agile development to get you started. You will then be introduced to set up a JIRA account and the JIRA ecosystem to help you implement a dashboard for your team's work and issues. You will learn how to manage any issues and bugs that might emerge in the development stage. Going ahead, the book will help you build reports and use them to plan the releases based on the study of the reports. Towards the end, you will come across working with the gathered data and create a dashboard that helps you track the project's development.
Table of Contents (8 chapters)

Issue searching using JQL

In this section, we'll discuss issue searching using JQL. We will cover what JQL is, writing queries in both the simple editor and the advanced editor in order to return results, and how to export those results to use them in other ways.

First, let's talk about JQL. You won't want to confuse it with the Java Query Language, which is something different. We will be looking at the JIRA Query Language (JQL). It's very similar in format to SQL, so if you have spent any time with SQL and understand its query syntax, you're going to feel pretty comfortable in JQL. It uses fields, values, operators, and keywords. Let's discuss what those are.

The fields themselves are the different types of information that are contained within the systems; these are the different attributes for the work types, and more. The values are actually...