Home

Awesome

JIRA/Confluence Data Store for Fess Java CI with Maven

Overview

JIRA/Confluence Data Store is an extension for Fess Data Store Crawling.

Download

See Maven Repository.

Installation

See Plugin of Administration guide.

Getting Started

Parameters

home=...
auth_type=...
oauth.consumer_key=OauthKey
oauth.private_key=...
oauth.secret=...
oauth.access_token=...
issue.jql=...
KeyValue
homeURL of the Atlassian application(JIRA/Confluence)
auth_typeoauth(OAuth authentication) or basic(Basic authentication)
oauth.consumer_keyConsumer key for OAuth (Usually OauthKey)
oauth.private_keyPrivate key for OAuth
oauth.secretVerification code for OAuth
oauth.access_tokenAccess token for OAuth
basic.usernameusername of Atlassian account for Basic
basic.passwordpassword of Atlassian account for Basic
issue.jqlJQL for advanced search (JIRA only) (Optional)

oauth or basic parameters are required.

Scripts

JiraDataStore

url=issue.view_url
title=issue.summary
content=issue.description + issue.comments
last_modified=issue.last_modified
KeyValue
issue.view_urlURL of the issue.
issue.summarySummary of the issue.
issue.descriptionDescription of the issue.
issue.commentsComments of the issue.
issue.last_modifiedLast modified date of the issue.

ConfluenceDataStore

url=content.view_url
title=content.title
content=content.body + content.comments
last_modified=content.last_modified
KeyValue
content.view_urlURL of the content page.
content.titleTitle of the content page.
content.bodyBody of the content page.
content.commentsComments of the content page.
content.last_modifiedLast modified date of the content.