My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members

Provides a simple Groovy API through which to programmatically interact with Atlassian's JIRA.

For example:

def jira = new Jira('http://jiraUrl', 'username', 'password')

db.errors.each { errorRecord ->
    jira.createIssue(
        reporter: 'username',
        project: 'PRJ',
        type: 'Bug',
        summary: errorRecord.message,
        priority: 'Major',
        components: [errorRecord.source]
        description: errorRecord.detail
    )
}
Powered by Google Project Hosting