All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugin.jira.JiraMojo Maven / Gradle / Ivy

Go to download

Creates a release history for inclusion into the site and assists in generating an announcement mail.

There is a newer version: 2.12.1
Show newest version
package org.apache.maven.plugin.jira;

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

import java.io.File;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;

import org.apache.commons.lang.StringUtils;
import org.apache.maven.plugin.changes.AbstractChangesReport;
import org.apache.maven.plugin.changes.ProjectUtils;
import org.apache.maven.plugin.issues.Issue;
import org.apache.maven.plugin.issues.IssueUtils;
import org.apache.maven.plugin.issues.IssuesReportGenerator;
import org.apache.maven.plugin.issues.IssuesReportHelper;
import org.apache.maven.reporting.MavenReportException;
import org.apache.maven.settings.Settings;

/**
 * Goal which downloads issues from the Issue Tracking System and generates a report.
 *
 * @goal jira-report
 * @author Johnny R. Ruiz III
 * @version $Id: JiraMojo.java 1134780 2011-06-11 21:47:41Z hboutemy $
 * @threadSafe
 */
public class JiraMojo
    extends AbstractChangesReport
{
    /**
     * Valid JIRA columns.
     */
    private static final Map JIRA_COLUMNS = new HashMap( 16 );

    static
    {
        JIRA_COLUMNS.put( "Assignee", new Integer( IssuesReportHelper.COLUMN_ASSIGNEE ) );
        JIRA_COLUMNS.put( "Component", new Integer( IssuesReportHelper.COLUMN_COMPONENT ) );
        JIRA_COLUMNS.put( "Created", new Integer( IssuesReportHelper.COLUMN_CREATED ) );
        JIRA_COLUMNS.put( "Fix Version", new Integer( IssuesReportHelper.COLUMN_FIX_VERSION ) );
        JIRA_COLUMNS.put( "Id", new Integer( IssuesReportHelper.COLUMN_ID ) );
        JIRA_COLUMNS.put( "Key", new Integer( IssuesReportHelper.COLUMN_KEY ) );
        JIRA_COLUMNS.put( "Priority", new Integer( IssuesReportHelper.COLUMN_PRIORITY ) );
        JIRA_COLUMNS.put( "Reporter", new Integer( IssuesReportHelper.COLUMN_REPORTER ) );
        JIRA_COLUMNS.put( "Resolution", new Integer( IssuesReportHelper.COLUMN_RESOLUTION ) );
        JIRA_COLUMNS.put( "Status", new Integer( IssuesReportHelper.COLUMN_STATUS ) );
        JIRA_COLUMNS.put( "Summary", new Integer( IssuesReportHelper.COLUMN_SUMMARY ) );
        JIRA_COLUMNS.put( "Type", new Integer( IssuesReportHelper.COLUMN_TYPE ) );
        JIRA_COLUMNS.put( "Updated", new Integer( IssuesReportHelper.COLUMN_UPDATED ) );
        JIRA_COLUMNS.put( "Version", new Integer( IssuesReportHelper.COLUMN_VERSION ) );
    }

    /**
     * Sets the names of the columns that you want in the report. The columns
     * will appear in the report in the same order as you specify them here.
     * Multiple values can be separated by commas.
     * 

* Valid columns are: Assignee, Component, * Created, Fix Version, Id, * Key, Priority, Reporter, * Resolution, Status, Summary, * Type, Updated and Version. *

* * @parameter default-value="Key,Summary,Status,Resolution,Assignee" * @since 2.0 */ private String columnNames; /** * Sets the component(s) that you want to limit your report to include. * Multiple values can be separated by commas (such as 10011,10012). * If this is set to empty - that means all components will be included. * * @parameter default-value="" */ private String component; /** * Defines the filter parameters to restrict which issues are retrieved * from JIRA. The filter parameter uses the same format of url * parameters that is used in a JIRA search. * * @parameter default-value="" */ private String filter; /** * Sets the fix version id(s) that you want to limit your report to include. * These are JIRA's internal version ids, NOT the human readable display ones. * Multiple fix versions can be separated by commas. * If this is set to empty - that means all fix versions will be included. * * @parameter default-value="" * @since 2.0 */ private String fixVersionIds; /** * The pattern used by dates in the JIRA XML-file. This is used to parse * the Created and Updated fields. * * @parameter default-value="EEE, d MMM yyyy HH:mm:ss Z" * @since 2.4 */ private String jiraDatePattern; /** * Defines the JIRA password for authentication into a private JIRA installation. * * @parameter default-value="" */ private String jiraPassword; /** * Defines the JIRA username for authentication into a private JIRA installation. * * @parameter default-value="" */ private String jiraUser; /** * Path to the JIRA XML file, which will be parsed. * * @parameter expression="${project.build.directory}/jira-results.xml" * @required * @readonly */ private File jiraXmlPath; /** * Maximum number of entries to be fetched from JIRA. * * @parameter default-value=100 * */ private int maxEntries; /** * If you only want to show issues for the current version in the report. * The current version being used is ${project.version} minus * any "-SNAPSHOT" suffix. * * @parameter default-value="false" * @since 2.0 */ private boolean onlyCurrentVersion; /** * Sets the priority(s) that you want to limit your report to include. * Valid statuses are Blocker, Critical, * Major, Minor and Trivial. * Multiple values can be separated by commas. * If this is set to empty - that means all priorities will be included. * * @parameter default-value="" */ private String priorityIds; /** * Sets the resolution(s) that you want to fetch from JIRA. * Valid resolutions are: Unresolved, Fixed, * Won't Fix, Duplicate, Incomplete * and Cannot Reproduce. * Multiple values can be separated by commas. *

* Note: In versions 2.0-beta-3 and earlier this parameter had no * default value. *

* * @parameter default-value="Fixed" */ private String resolutionIds; /** * Settings XML configuration. * * @parameter expression="${settings}" * @required * @readonly */ private Settings settings; /** * Sets the column names that you want to sort the report by. Add * DESC following the column name * to specify descending sequence. For * example Fix Version DESC, Type sorts first by * the Fix Version in descending order and then by Type in * ascending order. By default sorting is done in ascending order, but is * possible to specify ASC for consistency. The previous * example would then become Fix Version DESC, Type ASC. *

* Valid columns are: Assignee, Component, * Created, Fix Version, Id, * Key, Priority, Reporter, * Resolution, Status, Summary, * Type, Updated and Version. *

*

* Note: If you are using JIRA 4 you need to put your * sort column names in the reverse order. The handling of this changed * between JIRA 3 and JIRA 4. The current default value is suitable for * JIRA 3. This may change in the future, so please configure your sort * column names in an order that works for your own JIRA version. *

* * @parameter default-value="Priority DESC, Created DESC" * @since 2.0 */ private String sortColumnNames; /** * Sets the status(es) that you want to fetch from JIRA. * Valid statuses are: Open, In Progress, * Reopened, Resolved and Closed. * Multiple values can be separated by commas. *

* If your installation of JIRA uses custom status IDs, you can reference * them here by their numeric values. * You can obtain them on the Statuses page * (in 4.0.2 it's under Administration > Issue Settings > Statuses) * - just hover over the Edit link for the status you want and * you'll see something like * <your JIRA URL>/secure/admin/EditStatus!default.jspa?id=12345; * in this case the value is 12345. *

*

* Note: In versions 2.0-beta-3 and earlier this parameter had no * default value. *

* * @parameter default-value="Closed" */ private String statusIds; /** * Sets the types(s) that you want to limit your report to include. * Valid types are: Bug, New Feature, * Task, Improvement, Wish, * Test and Sub-task. * Multiple values can be separated by commas. * If this is set to empty - that means all types will be included. * * @parameter default-value="" * @since 2.0 */ private String typeIds; /** * The prefix used when naming versions in JIRA. *

* If you have a project in JIRA with several components that have different * release cycles, it is an often used pattern to prefix the version with * the name of the component, e.g. maven-filtering-1.0 etc. To fetch issues * from JIRA for a release of the "maven-filtering" component you would need * to set this parameter to "maven-filtering-". *

* * @parameter default-value="" * @since 2.4 */ private String versionPrefix; /** * Defines the http password for basic authentication into the JIRA webserver. * * @parameter default-value="" */ private String webPassword; /** * Defines the http user for basic authentication into the JIRA webserver. * * @parameter default-value="" */ private String webUser; /* * Used for tests. */ private AbstractJiraDownloader mockDownloader; /* --------------------------------------------------------------------- */ /* Public methods */ /* --------------------------------------------------------------------- */ /** * @see org.apache.maven.reporting.AbstractMavenReport#canGenerateReport() */ public boolean canGenerateReport() { if ( mockDownloader != null ) { return true; } return ProjectUtils.validateIfIssueManagementComplete( project, "JIRA", "JIRA Report", getLog() ); } public void executeReport( Locale locale ) throws MavenReportException { // Validate parameters List columnIds = IssuesReportHelper.getColumnIds( columnNames, JIRA_COLUMNS ); if ( columnIds.isEmpty() ) { // This can happen if the user has configured column names and they are all invalid throw new MavenReportException( "maven-changes-plugin: None of the configured columnNames '" + columnNames + "' are valid." ); } try { // Download issues AbstractJiraDownloader issueDownloader; if ( mockDownloader != null ) { issueDownloader = mockDownloader; } else { issueDownloader = new JiraDownloader(); } configureIssueDownloader( issueDownloader ); issueDownloader.doExecute(); List issueList = issueDownloader.getIssueList(); if ( StringUtils.isNotEmpty( versionPrefix ) ) { int originalNumberOfIssues = issueList.size(); issueList = IssueUtils.filterIssuesWithVersionPrefix( issueList, versionPrefix ); getLog().debug( "Filtered out " + issueList.size() + " issues of " + originalNumberOfIssues + " that matched the versionPrefix '" + versionPrefix + "'." ); } if ( onlyCurrentVersion ) { String version = ( versionPrefix == null ? "" : versionPrefix ) + project.getVersion(); issueList = IssueUtils.getIssuesForVersion( issueList, version ); getLog().info( "The JIRA Report will contain issues only for the current version." ); } // Generate the report IssuesReportGenerator report = new IssuesReportGenerator( IssuesReportHelper.toIntArray( columnIds ) ); if ( issueList.isEmpty() ) { report.doGenerateEmptyReport( getBundle( locale ), getSink() ); } else { report.doGenerateReport( getBundle( locale ), getSink(), issueList ); } } catch ( Exception e ) { getLog().warn( e ); } } public String getDescription( Locale locale ) { return getBundle( locale ).getString( "report.issues.description" ); } public String getName( Locale locale ) { return getBundle( locale ).getString( "report.issues.name" ); } public String getOutputName() { return "jira-report"; } /* --------------------------------------------------------------------- */ /* Private methods */ /* --------------------------------------------------------------------- */ private ResourceBundle getBundle( Locale locale ) { return ResourceBundle.getBundle( "jira-report", locale, this.getClass().getClassLoader() ); } private void configureIssueDownloader( AbstractJiraDownloader issueDownloader ) { issueDownloader.setLog( getLog() ); issueDownloader.setMavenProject( project ); issueDownloader.setOutput( jiraXmlPath ); issueDownloader.setNbEntries( maxEntries ); issueDownloader.setComponent( component ); issueDownloader.setFixVersionIds( fixVersionIds ); issueDownloader.setStatusIds( statusIds ); issueDownloader.setResolutionIds( resolutionIds ); issueDownloader.setPriorityIds( priorityIds ); issueDownloader.setSortColumnNames( sortColumnNames ); issueDownloader.setFilter( filter ); issueDownloader.setJiraDatePattern( jiraDatePattern ); issueDownloader.setJiraUser( jiraUser ); issueDownloader.setJiraPassword( jiraPassword ); issueDownloader.setTypeIds( typeIds ); issueDownloader.setWebUser( webUser ); issueDownloader.setWebPassword( webPassword ); issueDownloader.setSettings( settings ); } public void setMockDownloader( AbstractJiraDownloader mockDownloader ) { this.mockDownloader = mockDownloader; } public AbstractJiraDownloader getMockDownloader() { return mockDownloader; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy